Remove unused constants.
When compiling with -Werror, -Wunused-const-variable the build fails due to those two constants not being used.
This commit is contained in:
parent
4920e27a48
commit
b1c75bc742
1 changed files with 0 additions and 2 deletions
|
@ -49,11 +49,9 @@ static const int kNanosPerSecond = 1000000000;
|
|||
static const int kMicrosPerSecond = 1000000;
|
||||
static const int kMillisPerSecond = 1000;
|
||||
static const int kNanosPerMillisecond = 1000000;
|
||||
static const int kMicrosPerMillisecond = 1000;
|
||||
static const int kNanosPerMicrosecond = 1000;
|
||||
static const int kSecondsPerMinute = 60; // Note that we ignore leap seconds.
|
||||
static const int kSecondsPerHour = 3600;
|
||||
static const char kTimestampFormat[] = "%E4Y-%m-%dT%H:%M:%S";
|
||||
|
||||
template <typename T>
|
||||
T CreateNormalized(int64 seconds, int64 nanos);
|
||||
|
|
Loading…
Add table
Reference in a new issue