| Index: net/quic/platform/impl/quic_flag_utils_impl.h
|
| diff --git a/net/quic/platform/impl/quic_flag_utils_impl.h b/net/quic/platform/impl/quic_flag_utils_impl.h
|
| index ba6ddd9aa30dece2dc2f6995e2ed244e3094ba39..bd1879451b96e50b7b9be84d7da585ac8f194cc3 100644
|
| --- a/net/quic/platform/impl/quic_flag_utils_impl.h
|
| +++ b/net/quic/platform/impl/quic_flag_utils_impl.h
|
| @@ -5,7 +5,8 @@
|
| #ifndef NET_QUIC_PLATFORM_IMPL_QUIC_FLAG_UTILS_IMPL_H_
|
| #define NET_QUIC_PLATFORM_IMPL_QUIC_FLAG_UTILS_IMPL_H_
|
|
|
| -#define QUIC_FLAG_COUNT_IMPL(flag) DVLOG(1) << "FLAG_##flag: " << FLAGS_##flag
|
| +#define QUIC_FLAG_COUNT_IMPL(flag) \
|
| + DVLOG(1) << "FLAG_" #flag ": " << FLAGS_##flag
|
| #define QUIC_FLAG_COUNT_N_IMPL(flag, instance, total) QUIC_FLAG_COUNT_IMPL(flag)
|
|
|
| #endif // NET_QUIC_PLATFORM_IMPL_QUIC_FLAG_UTILS_IMPL_H_
|
|
|