diff options
author | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-26 23:08:02 +0000 |
---|---|---|
committer | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-26 23:08:02 +0000 |
commit | 2fdc86af6441d62cf6f3af049ac4cab1984d5323 (patch) | |
tree | 4a548a889f1c261676bdd4b6ccbca4255cea1c5e /base/version.h | |
parent | 7e7a62b46abc05baaa5e969fd64cff485857c1b6 (diff) | |
download | chromium_src-2fdc86af6441d62cf6f3af049ac4cab1984d5323.zip chromium_src-2fdc86af6441d62cf6f3af049ac4cab1984d5323.tar.gz chromium_src-2fdc86af6441d62cf6f3af049ac4cab1984d5323.tar.bz2 |
Style cleanup in preparation for auto-linting base/.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/552004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@37164 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/version.h')
-rw-r--r-- | base/version.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/base/version.h b/base/version.h index 45329fc..b2ad7f5 100644 --- a/base/version.h +++ b/base/version.h @@ -11,7 +11,7 @@ #include "base/basictypes.h" class Version { -public: + public: // The version string must be made up of 1 or more uint16's separated // by '.'. Returns NULL if string is not in this format. // Caller is responsible for freeing the Version object once done. @@ -30,7 +30,7 @@ public: const std::vector<uint16>& components() const { return components_; } -private: + private: Version() {} bool InitFromString(const std::string& version_str); |