blob: f89b1dddccb1d3edfd9163ac9239b0f593a3a4a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
--- include/orcus/types.hpp
+++ include/orcus/types.hpp
@@ -7,6 +7,14 @@
#ifndef INCLUDED_ORCUS_TYPES_HPP
#define INCLUDED_ORCUS_TYPES_HPP
+
+#ifdef __GNUC__
+#pragma GCC diagnostic push
+#pragma GCC diagnostic ignored "-Wpragmas" // for old GCC
+#pragma GCC diagnostic ignored "-Wunknown-warning-option" // for Clang
+#pragma GCC diagnostic ignored "-Wdeprecated-copy"
+#pragma GCC diagnostic ignored "-Wshadow"
+#endif
#include <cstdlib>
#include <vector>
@@ -145,6 +152,10 @@
typedef ::std::vector<xml_token_attr_t> xml_attrs_t;
}
+
+#ifdef __GNUC__
+#pragma GCC diagnostic pop
+#endif
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|