office-gobmx/external/liborcus/gcc9.patch.0
Kohei Yoshida 1d0727a104 Update orcus to 0.14.0.
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>
2018-09-01 01:34:10 +02:00

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: */