We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a36e4c commit 6060849Copy full SHA for 6060849
examples/speed_test.cpp
@@ -10,6 +10,14 @@
10
11
#define _HAS_ITERATOR_DEBUGGING 0
12
13
+// -Wdeprecated-copy-with-user-provided-copy in boost/format/group.hpp
14
+
15
+#if defined(__clang__) && defined(__has_warning)
16
+# if __has_warning( "-Wdeprecated-copy-with-user-provided-copy" )
17
+# pragma clang diagnostic ignored "-Wdeprecated-copy-with-user-provided-copy"
18
+# endif
19
+#endif
20
21
#include <boost/property_tree/ptree.hpp>
22
#include <boost/format.hpp>
23
#include <boost/shared_array.hpp>
0 commit comments