diff options
Diffstat (limited to 'base/time/time.h')
-rw-r--r-- | base/time/time.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/time/time.h b/base/time/time.h index 8da08ff..4944085 100644 --- a/base/time/time.h +++ b/base/time/time.h @@ -421,7 +421,7 @@ class BASE_EXPORT Time : public time_internal::TimeBase<Time> { // To avoid overflow in QPC to Microseconds calculations, since we multiply // by kMicrosecondsPerSecond, then the QPC value should not exceed // (2^63 - 1) / 1E6. If it exceeds that threshold, we divide then multiply. - static const int64 kQPCOverflowThreshold = 0x8637BD05AF7; + enum : int64 { kQPCOverflowThreshold = 0x8637BD05AF7 }; #endif // Represents an exploded time that can be formatted nicely. This is kind of |