1d0727a104
And make all necessary adjustments for the new version of orcus. Change-Id: I0dc207162a3ddfaad6da198a3d13b65f530757d5 Reviewed-on: https://gerrit.libreoffice.org/59884 Tested-by: Jenkins Reviewed-by: Kohei Yoshida <libreoffice@kohei.us>
28 lines
664 B
Text
28 lines
664 B
Text
--- 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: */
|