From 53ab6cde1b3dd95367cb3112ae9a85907d7281d2 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Wed, 8 Feb 2023 01:53:42 +0100 Subject: [PATCH] Add missing diagostics pop --- libs/ardour/ardour/vst3_plugin.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/libs/ardour/ardour/vst3_plugin.h b/libs/ardour/ardour/vst3_plugin.h index 409eae12d2..3deee4adb8 100644 --- a/libs/ardour/ardour/vst3_plugin.h +++ b/libs/ardour/ardour/vst3_plugin.h @@ -449,5 +449,11 @@ public: boost::shared_ptr m; }; +#if defined(__clang__) +# pragma clang diagnostic pop +#elif __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6) +# pragma GCC diagnostic pop +#endif + } // namespace ARDOUR #endif