| Index: net/quic/core/congestion_control/windowed_filter.h
|
| diff --git a/net/quic/core/congestion_control/windowed_filter.h b/net/quic/core/congestion_control/windowed_filter.h
|
| index 451164950b0c43caaa4af909ffff7746eceefc03..0d56cfdf39a36e570baba308cce971e092eef9a8 100644
|
| --- a/net/quic/core/congestion_control/windowed_filter.h
|
| +++ b/net/quic/core/congestion_control/windowed_filter.h
|
| @@ -90,7 +90,14 @@ class WindowedFilter {
|
| if (Compare()(new_sample, estimates_[1].sample)) {
|
| estimates_[1] = Sample(new_sample, new_time);
|
| estimates_[2] = estimates_[1];
|
| +#if defined(__GNUC__)
|
| +#pragma GCC diagnostic push
|
| +#pragma GCC diagnostic ignored "-Wstrict-overflow"
|
| +#endif
|
| } else if (Compare()(new_sample, estimates_[2].sample)) {
|
| +#if defined(__GNUC__)
|
| +#pragma GCC diagnostic pop
|
| +#endif
|
| estimates_[2] = Sample(new_sample, new_time);
|
| }
|
|
|
|
|