2018-07-26 03:34:56 -05:00
|
|
|
--- include/orcus/types.hpp
|
|
|
|
+++ include/orcus/types.hpp
|
2018-08-27 10:06:17 -05:00
|
|
|
@@ -7,6 +7,14 @@
|
2018-07-26 03:34:56 -05:00
|
|
|
|
|
|
|
#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"
|
2018-08-27 10:06:17 -05:00
|
|
|
+#pragma GCC diagnostic ignored "-Wshadow"
|
2018-07-26 03:34:56 -05:00
|
|
|
+#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: */
|