| Index: net/quic/crypto/crypto_protocol.h
|
| diff --git a/net/quic/crypto/crypto_protocol.h b/net/quic/crypto/crypto_protocol.h
|
| index 7eb9d3a39d9636297db882de6396338f94dea483..07fe17c92f63e17ebefcc1ba8291daaa39c96b7c 100644
|
| --- a/net/quic/crypto/crypto_protocol.h
|
| +++ b/net/quic/crypto/crypto_protocol.h
|
| @@ -19,7 +19,8 @@
|
| //
|
| // We use a macro to ensure that no static initialisers are created. Use the
|
| // MakeQuicTag function in normal code.
|
| -#define TAG(a, b, c, d) ((d << 24) + (c << 16) + (b << 8) + a)
|
| +#define TAG(a, b, c, d) \
|
| + static_cast<QuicTag>((d << 24) + (c << 16) + (b << 8) + a)
|
|
|
| namespace net {
|
|
|
|
|