Add missing include guard in gzip-hpp
This commit is contained in:
parent
9115f6031f
commit
f7065a2643
|
@ -1,3 +1,6 @@
|
|||
#ifndef GZIP_HPP_INCLUDED
|
||||
#define GZIP_HPP_INCLUDED
|
||||
|
||||
#ifndef ZLIB_CONST
|
||||
#define ZLIB_CONST
|
||||
#endif
|
||||
|
@ -115,3 +118,5 @@ inline std::string decompress(std::string const& input,
|
|||
}
|
||||
|
||||
} // namespace gzip
|
||||
|
||||
#endif
|
Loading…
Reference in New Issue