VCCC  2024.05
VisualCamp Common C++ library
ignore_dumb_diagnostics_push.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 push
10 #pragma clang diagnostic ignored "-Wundefined-internal"
11 
12 #elif defined(_MSC_VER)
13 #pragma warning( push )
14 #pragma warning( disable : 5046)
15 #endif
16 
17 #endif // VCCC_CORE_IGNORE_DUMB_DIAGNOSTICS_PUSH_HPP_