[Libreoffice-commits] core.git: jvmfwk/plugins

Noel Grandin (via logerrit) logerrit at kemper.freedesktop.org
Wed May 13 06:28:48 UTC 2020


 jvmfwk/plugins/sunmajor/pluginlib/sunjavaplugin.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit ab3eabe438880d6c0fc7dab99a8537d873da3f05
Author:     Noel Grandin <noel.grandin at collabora.co.uk>
AuthorDate: Tue May 12 15:34:33 2020 +0200
Commit:     Noel Grandin <noel.grandin at collabora.co.uk>
CommitDate: Wed May 13 08:28:13 2020 +0200

    gcc 10 also generates this clobber warning
    
    (specifically 10.1.1 is the version I have)
    
    Change-Id: I40fd720a9a75b809f24ca135c4ddb0ce61ecbe41
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/94056
    Tested-by: Jenkins
    Reviewed-by: Noel Grandin <noel.grandin at collabora.co.uk>

diff --git a/jvmfwk/plugins/sunmajor/pluginlib/sunjavaplugin.cxx b/jvmfwk/plugins/sunmajor/pluginlib/sunjavaplugin.cxx
index 4760ab629313..c754dbe7c9cb 100644
--- a/jvmfwk/plugins/sunmajor/pluginlib/sunjavaplugin.cxx
+++ b/jvmfwk/plugins/sunmajor/pluginlib/sunjavaplugin.cxx
@@ -818,12 +818,12 @@ javaPluginError jfw_plugin_startJavaVirtualMachine(
 #endif
 
     return errorcode;
-#if defined __GNUC__ && __GNUC__ == 7 && !defined __clang__
+#if defined __GNUC__ && (__GNUC__ == 7 || __GNUC__ == 10) && !defined __clang__
 #pragma GCC diagnostic push
 #pragma GCC diagnostic ignored "-Wclobbered"
 #endif
 }
-#if defined __GNUC__ && __GNUC__ == 7 && !defined __clang__
+#if defined __GNUC__ && (__GNUC__ == 7 || __GNUC__ == 10) && !defined __clang__
 #pragma GCC diagnostic pop
 #endif
 


More information about the Libreoffice-commits mailing list