Index: net/quic/quic_protocol.h |
diff --git a/net/quic/quic_protocol.h b/net/quic/quic_protocol.h |
index 8c2bca76bba58b50e8618f7d7f79c9d66c7c8526..aec0ef0e92994646cecc8ea3c38d2f2bacfd933e 100644 |
--- a/net/quic/quic_protocol.h |
+++ b/net/quic/quic_protocol.h |
@@ -6,6 +6,8 @@ |
#define NET_QUIC_QUIC_PROTOCOL_H_ |
#include <stddef.h> |
+#include <stdint.h> |
+ |
#include <limits> |
#include <list> |
#include <map> |
@@ -169,8 +171,8 @@ const int kUFloat16MaxExponent = (1 << kUFloat16ExponentBits) - 2; // 30 |
const int kUFloat16MantissaBits = 16 - kUFloat16ExponentBits; // 11 |
const int kUFloat16MantissaEffectiveBits = kUFloat16MantissaBits + 1; // 12 |
const uint64 kUFloat16MaxValue = // 0x3FFC0000000 |
- ((GG_UINT64_C(1) << kUFloat16MantissaEffectiveBits) - 1) << |
- kUFloat16MaxExponent; |
+ ((UINT64_C(1) << kUFloat16MantissaEffectiveBits) - 1) |
+ << kUFloat16MaxExponent; |
enum TransmissionType { |
NOT_RETRANSMISSION, |