VCCC  2024.05
VisualCamp Common C++ library
ignore_dumb_diagnostics_pop.hpp
Go to the documentation of this file.
1 //
2 // Created by YongGyu Lee on 4/12/24.
3 //
4 
5 #ifndef VCCC_CORE_IGNORE_DUMB_DIAGNOSTICS_PUSH_HPP_
6 #define VCCC_CORE_IGNORE_DUMB_DIAGNOSTICS_PUSH_HPP_
7 
8 #ifdef __clang__
9 #pragma clang diagnostic pop
10 #elif defined(_MSC_VER)
11 #pragma warning( pop )
12 #endif
13 
14 #endif // VCCC_CORE_IGNORE_DUMB_DIAGNOSTICS_PUSH_HPP_