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

Fixed some gcc 8 compiler warnings

This commit is contained in:
Tom Poole 2018-07-10 17:41:26 +01:00
parent 08d67c763f
commit 6cff481c6a
9 changed files with 46 additions and 43 deletions

View file

@ -100,7 +100,18 @@
#include <unistd.h>
#include <fcntl.h>
#include <sys/wait.h>
#if JUCE_GCC && __GNUC__ > 7
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wparentheses"
#endif
#include <gtk/gtk.h>
#if JUCE_GCC && __GNUC__ > 7
#pragma GCC diagnostic pop
#endif
#include <gtk/gtkx.h>
#include <glib-unix.h>
#include <webkit2/webkit2.h>