Main Page
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
c
d
e
g
h
i
m
n
p
r
s
t
u
v
w
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
Classes
Class List
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
~
Functions
_
a
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
x
~
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
p
q
r
s
t
v
w
x
Typedefs
c
d
f
h
m
r
s
t
v
Enumerations
Enumerator
Files
File List
File Members
All
b
c
d
e
g
h
l
m
n
p
q
r
s
t
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
b
c
d
e
p
r
s
t
include
tsid
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