13
0

Add missing diagostics pop

This commit is contained in:
Robin Gareus 2023-02-08 01:53:42 +01:00
parent 7b3701d1ef
commit 53ab6cde1b
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

View File

@ -449,5 +449,11 @@ public:
boost::shared_ptr<VST3PluginModule> m;
};
#if defined(__clang__)
# pragma clang diagnostic pop
#elif __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6)
# pragma GCC diagnostic pop
#endif
} // namespace ARDOUR
#endif