1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
#pragma once
#if defined _MSC_VER
# define MEMORY_BARRIER() _ReadWriteBarrier()
#else
# define MEMORY_BARRIER() asm volatile("" ::: "memory")
#endif
#if defined _MSC_VER
# define never_inline __declspec(noinline)
#elif defined __GNUG__
# define never_inline __attribute__((noinline))
#else
# define never_inline
#endif
#if defined __cplusplus
# define restrict_ptr __restrict
#endif
#if defined _MSC_VER
# define force_inline __forceinline
#else
# define force_inline __attribute__((always_inline, gnu_inline)) inline
#endif
#ifdef Q_CREATOR_RUN
# define warn_result_unused
#elif defined _MSC_VER
# define warn_result_unused _Check_return_
#else
# define warn_result_unused __attribute__((warn_unused_result))
#endif
#if defined __GNUC__
# define likely(x) __builtin_expect(!!(x),1)
# define unlikely(x) __builtin_expect(!!(x),0)
#else
# define likely(x) (x)
# define unlikely(x) (x)
#endif
#if defined _MSC_VER
# define OTR_FUNNAME (__FUNCSIG__)
#else
# define OTR_FUNNAME (__PRETTY_FUNCTION__)
#endif
#if defined __cplusplus
// from now only C++ macros
# define thunk(...) ([&]() { __VA_ARGS__; })
#if defined _MSC_VER
# define OTR_DEPRECATE(msg, decl, body) __declspec(deprecated(msg)) decl body
#else
# define OTR_DEPRECATE(msg, decl, body) decl body __attribute__((deprecated(msg)))
#endif
#if !defined PP_CAT
# define PP_CAT(x,y) PP_CAT1(x,y)
# define PP_CAT1(x,y) x##y
#endif
namespace static_warning_detail {
template<bool> struct test___132;
template<>
struct test___132<true>
{
static constexpr inline void check() {}
};
} // ns static_warning_detail
#define static_warning_template(cond, msg) \
{ \
template<bool> \
struct ::static_warning_detail::test___132 \
{ \
OTR_DEPRECATE(msg, static constexpr inline void check(), {}) \
}; \
::static_warning_detail::test___132<(cond)>::check(); \
}
#define static_warning(cond, msg) \
static_warning_template(cond, PP_CAT(msg, PP_CAT("\nExpression: ", #cond)))
#endif
|