MeVisLab Toolbox Reference
PCLThirdPartyWarningsRestore.h
Go to the documentation of this file.
1 // Copyright (c) Fraunhofer MEVIS, Germany. All rights reserved.
2 // **InsertLicense** code author="Wolf Spindler"
3 //----------------------------------------------------------------------------------
5 
11 //----------------------------------------------------------------------------------
12 
13 #ifdef _MSC_VER
14  #pragma warning( pop )
15 #elif defined(__GNUC__)
16  // pragma GCC diagnostic push is not available on the old Mac gcc.
17  // Thus we can only use this mechanism on linux, or if we use clang.
18  #if !defined(MACOS) || defined(__clang__)
19  #pragma GCC diagnostic pop
20  #endif
21 #endif
22 
23 #include <ThirdPartyWarningsRestore.h>
24