Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
_
a
b
c
d
e
f
g
i
j
l
m
n
o
p
q
r
s
t
u
v
w
+
Functions
_
a
b
c
d
f
g
i
j
l
m
o
p
q
r
s
t
u
v
+
Variables
_
a
b
c
d
e
f
g
i
j
l
m
n
p
r
s
u
v
w
+
Typedefs
c
e
f
i
m
q
r
s
v
Enumerations
Enumerator
+
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
z
~
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
~
+
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
z
+
Typedefs
b
d
e
f
k
l
m
s
t
v
Enumerations
+
Enumerator
a
b
c
d
e
f
g
i
j
k
m
n
o
p
r
s
t
u
Related Functions
+
Files
File List
+
File Members
+
All
_
a
b
c
d
e
f
g
i
k
l
m
n
o
p
r
s
t
u
v
+
Functions
b
c
d
e
f
g
i
l
m
o
p
r
s
t
u
Variables
+
Typedefs
c
d
e
f
k
r
s
t
Enumerations
Enumerator
+
Macros
_
a
b
c
d
e
f
i
l
m
n
o
p
r
s
t
v
include
sot
core
macros.hh
Go to the documentation of this file.
1
#ifndef __SOT_CORE_MACROS_HH__
2
#define __SOT_CORE_MACROS_HH__
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 SOT_CORE_DISABLE_WARNING_PUSH __pragma(warning(push))
8
#define SOT_CORE_DISABLE_WARNING_POP __pragma(warning(pop))
9
#define SOT_CORE_DISABLE_WARNING(warningNumber) \
10
__pragma(warning(disable : warningNumber))
11
#define SOT_CORE_DISABLE_WARNING_DEPRECATED SOT_CORE_DISABLE_WARNING(4996)
12
#define SOT_CORE_DISABLE_WARNING_FALLTHROUGH
13
14
#elif defined(__GNUC__) || defined(__clang__)
15
16
#define SOT_CORE_DO_PRAGMA(X) _Pragma(#X)
17
#define SOT_CORE_DISABLE_WARNING_PUSH SOT_CORE_DO_PRAGMA(GCC diagnostic push)
18
#define SOT_CORE_DISABLE_WARNING_POP SOT_CORE_DO_PRAGMA(GCC diagnostic pop)
19
#define SOT_CORE_DISABLE_WARNING(warningName) \
20
SOT_CORE_DO_PRAGMA(GCC diagnostic ignored #warningName)
21
#define SOT_CORE_DISABLE_WARNING_DEPRECATED \
22
SOT_CORE_DISABLE_WARNING(-Wdeprecated - declarations)
23
#define SOT_CORE_DISABLE_WARNING_FALLTHROUGH \
24
SOT_CORE_DISABLE_WARNING(-Wimplicit - fallthrough)
25
26
#else
27
28
#define SOT_CORE_DISABLE_WARNING_PUSH
29
#define SOT_CORE_DISABLE_WARNING_POP
30
#define SOT_CORE_DISABLE_WARNING_DEPRECATED
31
32
#endif
33
34
#endif
sot-core
Author(s): Olivier Stasse, ostasse@laas.fr
autogenerated on Wed Jun 21 2023 02:51:26