Warning pragmas

This commit is contained in:
Dan Paulat 2023-04-17 18:34:04 -05:00
parent d8b669262c
commit cdd4ced28e
7 changed files with 63 additions and 2 deletions

View file

@ -5,10 +5,19 @@
#include <istream>
#include <string>
#if defined(__GNUC__)
# pragma GCC diagnostic push
# pragma GCC diagnostic ignored "-Wdeprecated-copy"
#endif
#include <boost/iostreams/copy.hpp>
#include <boost/iostreams/filtering_streambuf.hpp>
#include <boost/iostreams/filter/bzip2.hpp>
#if defined(__GNUC__)
# pragma GCC diagnostic pop
#endif
namespace scwx
{
namespace wsr88d