Skip to content
Snippets Groups Projects
Commit d222299b authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

generalize pragma from clang to GCC to supress warning from Boost

parent 7263b3c3
No related branches found
No related tags found
1 merge request!2539generalize pragma from clang to GCC to supress warning from Boost
Pipeline #141359 passed
...@@ -16,13 +16,13 @@ ...@@ -16,13 +16,13 @@
#include "Base/Util/PathUtil.h" #include "Base/Util/PathUtil.h"
#include "Base/Util/StringUtil.h" #include "Base/Util/StringUtil.h"
#include <fstream> #include <fstream>
#pragma clang diagnostic push #pragma GCC diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated-copy" #pragma GCC diagnostic ignored "-Wdeprecated-copy"
#include <boost/iostreams/copy.hpp> #include <boost/iostreams/copy.hpp>
#include <boost/iostreams/filter/bzip2.hpp> #include <boost/iostreams/filter/bzip2.hpp>
#include <boost/iostreams/filter/gzip.hpp> #include <boost/iostreams/filter/gzip.hpp>
#include <boost/iostreams/filtering_stream.hpp> #include <boost/iostreams/filtering_stream.hpp>
#pragma clang diagnostic pop #pragma GCC diagnostic pop
namespace { namespace {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment