| Index: net/quic/quic_config.cc
|
| diff --git a/net/quic/quic_config.cc b/net/quic/quic_config.cc
|
| index 9a5f403d3cc3014ae42d71c273d35b2f5f7691fb..78b25863e69fc342134acaac87f02504be2e30b1 100644
|
| --- a/net/quic/quic_config.cc
|
| +++ b/net/quic/quic_config.cc
|
| @@ -12,6 +12,7 @@
|
| #include "net/quic/quic_sent_packet_manager.h"
|
| #include "net/quic/quic_utils.h"
|
|
|
| +using std::min;
|
| using std::string;
|
|
|
| namespace net {
|
| @@ -106,7 +107,7 @@ QuicErrorCode QuicNegotiableUint32::ProcessClientHello(
|
| return error;
|
| }
|
| negotiated_ = true;
|
| - negotiated_value_ = std::min(value, max_value_);
|
| + negotiated_value_ = min(value, max_value_);
|
|
|
| return QUIC_NO_ERROR;
|
| }
|
|
|