diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2019-11-29 11:48:56 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2020-04-29 21:32:42 +0200 |
commit | a6729be5e8a71933067c655a97f7a755ccb618c0 (patch) | |
tree | 1d885403b1caa14a3240153c08e08e9d5752b456 | |
parent | e287fde52fb9de5bdf1d00c8a3fbfcca7db9892c (diff) |
GCC trunk towards GCC 10 still emits a bogus -Wstringop-truncation
Change-Id: I86e7bf7615bd31ed90b067cebfbaf0126c8d8c2b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/84055
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
-rw-r--r-- | hwpfilter/source/hstyle.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hwpfilter/source/hstyle.cxx b/hwpfilter/source/hstyle.cxx index e6f1e3999e07..95f3570d25fd 100644 --- a/hwpfilter/source/hstyle.cxx +++ b/hwpfilter/source/hstyle.cxx @@ -72,14 +72,14 @@ void HWPStyle::SetName(int n, char const *name) if (name) { -#if defined __GNUC__ && (__GNUC__ == 8 || __GNUC__ == 9) && !defined __clang__ +#if defined __GNUC__ && (__GNUC__ >= 8 && __GNUC__ <= 10) && !defined __clang__ #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wstringop-truncation" #endif auto const p = DATA[n].name; strncpy(p, name, MAXSTYLENAME); p[MAXSTYLENAME] = '\0'; // just in case, even though the array is zero-initialized -#if defined __GNUC__ && (__GNUC__ == 8 || __GNUC__ == 9) && !defined __clang__ +#if defined __GNUC__ && (__GNUC__ >= 8 && __GNUC__ <= 10) && !defined __clang__ #pragma GCC diagnostic pop #endif } |