From 395321b4dc56d37a9f399c7d92a4240fb9c8c83c Mon Sep 17 00:00:00 2001 From: reuk Date: Thu, 2 Jul 2020 18:26:34 +0100 Subject: [PATCH] Ignore deprecation warnings in PushNotifications --- modules/juce_gui_extra/native/juce_mac_PushNotifications.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/juce_gui_extra/native/juce_mac_PushNotifications.cpp b/modules/juce_gui_extra/native/juce_mac_PushNotifications.cpp index 49e0e3cf67..17880e7713 100644 --- a/modules/juce_gui_extra/native/juce_mac_PushNotifications.cpp +++ b/modules/juce_gui_extra/native/juce_mac_PushNotifications.cpp @@ -23,6 +23,8 @@ ============================================================================== */ +JUCE_BEGIN_IGNORE_WARNINGS_GCC_LIKE ("-Wdeprecated-declarations") + namespace juce { @@ -562,3 +564,5 @@ private: }; } // namespace juce + +JUCE_END_IGNORE_WARNINGS_GCC_LIKE