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
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
Functions
+
Variables
a
b
c
d
e
f
g
h
i
k
l
m
o
p
q
r
s
t
u
v
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
#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