1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Fixed some more Linux compiler warnings

This commit is contained in:
Tom Poole 2019-06-05 09:35:52 +01:00
parent 67e6bc65a9
commit 8b5bc69582
7 changed files with 41 additions and 16 deletions

View file

@ -101,14 +101,17 @@
#include <fcntl.h>
#include <sys/wait.h>
#if JUCE_GCC && __GNUC__ > 7
#if JUCE_GCC
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wparentheses"
#pragma GCC diagnostic ignored "-Wzero-as-null-pointer-constant"
#if __GNUC__ > 7
#pragma GCC diagnostic ignored "-Wparentheses"
#endif
#endif
#include <gtk/gtk.h>
#if JUCE_GCC && __GNUC__ > 7
#if JUCE_GCC
#pragma GCC diagnostic pop
#endif
@ -172,10 +175,21 @@
//==============================================================================
#elif JUCE_LINUX
#include "native/juce_linux_XEmbedComponent.cpp"
#if JUCE_GCC
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wzero-as-null-pointer-constant"
#endif
#include "native/juce_linux_XEmbedComponent.cpp"
#if JUCE_WEB_BROWSER
#include "native/juce_linux_X11_WebBrowserComponent.cpp"
#endif
#if JUCE_GCC
#pragma GCC diagnostic pop
#endif
#include "native/juce_linux_X11_SystemTrayIcon.cpp"
//==============================================================================