office-gobmx/external/icu/gcc9.patch
Stephan Bergmann cec34c9862 external/icu: silence -Werror=deprecated-copy (GCC trunk towards GCC 9)
Change-Id: I43ecb3c0daac421e48433af04b1109bac02cc9aa
Reviewed-on: https://gerrit.libreoffice.org/58044
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2018-07-26 14:43:49 +02:00

27 lines
559 B
Diff

--- source/i18n/unicode/format.h
+++ source/i18n/unicode/format.h
@@ -22,6 +22,13 @@
#ifndef FORMAT_H
#define FORMAT_H
+
+#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"
+#endif
#include "unicode/utypes.h"
@@ -302,6 +309,10 @@
U_NAMESPACE_END
#endif /* #if !UCONFIG_NO_FORMATTING */
+
+#ifdef __GNUC__
+#pragma GCC diagnostic pop
+#endif
#endif // _FORMAT
//eof