macros.hpp
Go to the documentation of this file.
1 #ifndef __TSID_MACROS_HPP__
2 #define __TSID_MACROS_HPP__
3 
4 // ref https://www.fluentcpp.com/2019/08/30/how-to-disable-a-warning-in-cpp/
5 #if defined(_MSC_VER)
6 
7 #define TSID_DISABLE_WARNING_PUSH __pragma(warning(push))
8 #define TSID_DISABLE_WARNING_POP __pragma(warning(pop))
9 #define TSID_DISABLE_WARNING(warningNumber) \
10  __pragma(warning(disable : warningNumber))
11 #define TSID_DISABLE_WARNING_DEPRECATED TSID_DISABLE_WARNING(4996)
12 
13 #elif defined(__GNUC__) || defined(__clang__)
14 
15 #define TSID_DO_PRAGMA(X) _Pragma(#X)
16 #define TSID_DISABLE_WARNING_PUSH TSID_DO_PRAGMA(GCC diagnostic push)
17 #define TSID_DISABLE_WARNING_POP TSID_DO_PRAGMA(GCC diagnostic pop)
18 #define TSID_DISABLE_WARNING(warningName) \
19  TSID_DO_PRAGMA(GCC diagnostic ignored #warningName)
20 // clang-format off
21 #define TSID_DISABLE_WARNING_DEPRECATED \
22  TSID_DISABLE_WARNING(-Wdeprecated-declarations)
23 // clang-format on
24 
25 #else
26 
27 #define TSID_DISABLE_WARNING_PUSH
28 #define TSID_DISABLE_WARNING_POP
29 #define TSID_DISABLE_WARNING_DEPRECATED
30 
31 #endif
32 
33 #endif


tsid
Author(s): Andrea Del Prete, Justin Carpentier
autogenerated on Thu Apr 3 2025 02:47:15