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

[j.11] generalize pragma from clang to GCC to supress warning from Boost ()

Merging branch 'j.11'  into 'main'.

See merge request !2539
parents 64fba32c d222299b
No related branches found
No related tags found
1 merge request!2539generalize pragma from clang to GCC to supress warning from Boost
Pipeline #141360 passed
......@@ -16,13 +16,13 @@
#include "Base/Util/PathUtil.h"
#include "Base/Util/StringUtil.h"
#include <fstream>
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated-copy"
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wdeprecated-copy"
#include <boost/iostreams/copy.hpp>
#include <boost/iostreams/filter/bzip2.hpp>
#include <boost/iostreams/filter/gzip.hpp>
#include <boost/iostreams/filtering_stream.hpp>
#pragma clang diagnostic pop
#pragma GCC diagnostic pop
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