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 #define TSID_DISABLE_WARNING_DEPRECATED \
21  TSID_DISABLE_WARNING(-Wdeprecated - declarations)
22 
23 #else
24 
25 #define TSID_DISABLE_WARNING_PUSH
26 #define TSID_DISABLE_WARNING_POP
27 #define TSID_DISABLE_WARNING_DEPRECATED
28 
29 #endif
30 
31 #endif


tsid
Author(s): Andrea Del Prete, Justin Carpentier
autogenerated on Sun Jul 2 2023 02:21:51