From e55662b33a7d7854f9d058e2dfd16ce257237e7e Mon Sep 17 00:00:00 2001 From: Alexey Gladkov Date: Wed, 8 Feb 2017 16:36:46 +0000 Subject: [PATCH] ALT: gcc6 fixes --- net/filter/gzip_header.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/filter/gzip_header.cc b/net/filter/gzip_header.cc index 0dd2274a27f..7f9ff8c9253 100644 --- a/net/filter/gzip_header.cc +++ b/net/filter/gzip_header.cc @@ -2,21 +2,21 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "net/filter/gzip_header.h" #include #include #include "base/check_op.h" -#include "third_party/zlib/zlib.h" +#include namespace net { const uint8_t GZipHeader::magic[] = {0x1f, 0x8b}; GZipHeader::GZipHeader() { Reset(); } GZipHeader::~GZipHeader() = default; -- 2.25.4