Add missing include guard in gzip-hpp

This commit is contained in:
Marek Roszko 2020-11-19 01:04:42 -05:00
parent 9115f6031f
commit f7065a2643
1 changed files with 5 additions and 0 deletions

View File

@ -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