diff options
author | hans@chromium.org <hans@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-03 23:26:22 +0000 |
---|---|---|
committer | hans@chromium.org <hans@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-03 23:26:22 +0000 |
commit | f9b0ea5e6108f356011d2b38a64960ecc36c2259 (patch) | |
tree | 44f8d14ca0d9cd528ce411ebaae608746cebf015 /base/time | |
parent | 50388640382f805efb3d8411e50d7d08526d169d (diff) | |
download | chromium_src-f9b0ea5e6108f356011d2b38a64960ecc36c2259.zip chromium_src-f9b0ea5e6108f356011d2b38a64960ecc36c2259.tar.gz chromium_src-f9b0ea5e6108f356011d2b38a64960ecc36c2259.tar.bz2 |
Clean up unused constant globals
Found by clang's new -Wunused-const-variable.
BUG=290204
TBR=mark, acolwell, agl, alexeypa, markus, brettw
Review URL: https://codereview.chromium.org/25849004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226888 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/time')
-rw-r--r-- | base/time/time_posix.cc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/base/time/time_posix.cc b/base/time/time_posix.cc index 39958f7..141da8f 100644 --- a/base/time/time_posix.cc +++ b/base/time/time_posix.cc @@ -124,8 +124,6 @@ struct timespec TimeDelta::ToTimeSpec() const { // irb(main):011:0> Time.at(-11644473600).getutc() // => Mon Jan 01 00:00:00 UTC 1601 static const int64 kWindowsEpochDeltaSeconds = GG_INT64_C(11644473600); -static const int64 kWindowsEpochDeltaMilliseconds = - kWindowsEpochDeltaSeconds * Time::kMillisecondsPerSecond; // static const int64 Time::kWindowsEpochDeltaMicroseconds = |