| Index: base/time/time.h
|
| diff --git a/base/time/time.h b/base/time/time.h
|
| index 8da08ffda283a34d33d70ae48d2583779c793555..49440859a23b4744f3d8586ae01d63ca33c45f77 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
|
|
|