| Index: webrtc/base/basictypes.h
|
| diff --git a/webrtc/base/basictypes.h b/webrtc/base/basictypes.h
|
| index 3edf3548ef073432eda5c297e4c9b483a92b273b..66f2ff4b248115736cc70b12c5da84863cea76c9 100644
|
| --- a/webrtc/base/basictypes.h
|
| +++ b/webrtc/base/basictypes.h
|
| @@ -49,8 +49,8 @@ typedef int64_t int64;
|
| #endif
|
| #define INT64_F "l"
|
| #elif defined(__LP64__)
|
| -typedef unsigned long uint64; // NOLINT
|
| -typedef long int64; // NOLINT
|
| +typedef unsigned long long uint64; // NOLINT
|
| +typedef long long int64; // NOLINT
|
| #ifndef INT64_C
|
| #define INT64_C(x) x ## L
|
| #endif
|
|
|