We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f98013 commit efeef29Copy full SHA for efeef29
src/java.base/share/native/libjli/java.c
@@ -598,7 +598,14 @@ JavaMain(void* _args)
598
ret = (*env)->ExceptionOccurred(env) == NULL ? 0 : 1;
599
600
LEAVE();
601
+#if defined(__GNUC__)
602
+#pragma GCC diagnostic push
603
+#pragma GCC diagnostic ignored "-Wreturn-type"
604
+#endif
605
}
606
607
+#pragma GCC diagnostic pop
608
609
610
/*
611
* Test if the given name is one of the class path options.
0 commit comments