From d0e504f26ef08c60561806c409693496d3e617c3 Mon Sep 17 00:00:00 2001 From: Marek Roszko Date: Thu, 19 Nov 2020 01:06:05 -0500 Subject: [PATCH] Better name the include guard --- thirdparty/gzip-hpp/decompress.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/thirdparty/gzip-hpp/decompress.hpp b/thirdparty/gzip-hpp/decompress.hpp index f6b6ad4a5a..31a27b8f16 100644 --- a/thirdparty/gzip-hpp/decompress.hpp +++ b/thirdparty/gzip-hpp/decompress.hpp @@ -1,5 +1,5 @@ -#ifndef GZIP_HPP_INCLUDED -#define GZIP_HPP_INCLUDED +#ifndef GZIP_HPP_DECOMPRESS_HPP +#define GZIP_HPP_DECOMPRESS_HPP #ifndef ZLIB_CONST #define ZLIB_CONST @@ -119,4 +119,4 @@ inline std::string decompress(std::string const& input, } // namespace gzip -#endif \ No newline at end of file +#endif // GZIP_HPP_DECOMPRESS_HPP \ No newline at end of file