-
Notifications
You must be signed in to change notification settings - Fork 30
/
kwsPushBoostWarnings.h
79 lines (57 loc) · 2.02 KB
/
kwsPushBoostWarnings.h
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
#if defined(__clang__)
#pragma clang diagnostic push
#if __has_warning("-Wsuggest-override")
#pragma clang diagnostic ignored "-Wsuggest-override"
#endif
#if __has_warning("-Wsuggest-destructor-override")
#pragma clang diagnostic ignored "-Wsuggest-destructor-override"
#endif
#if __has_warning("-Wzero-as-null-pointer-constant")
#pragma clang diagnostic ignored "-Wzero-as-null-pointer-constant"
#endif
#if __has_warning("-Wredundant-parens")
#pragma clang diagnostic ignored "-Wredundant-parens"
#endif
#if __has_warning("-Wcomma")
#pragma clang diagnostic ignored "-Wcomma"
#endif
#if __has_warning("-Wdocumentation")
#pragma clang diagnostic ignored "-Wdocumentation"
#endif
#if __has_warning("-Wdocumentation-unknown-command")
#pragma clang diagnostic ignored "-Wdocumentation-unknown-command"
#endif
#if __has_warning("-Wcast-qual")
#pragma clang diagnostic ignored "-Wcast-qual"
#endif
#if __has_warning("-Wswitch-enum")
#pragma clang diagnostic ignored "-Wswitch-enum"
#endif
#if __has_warning("-Wdisabled-macro-expansion")
#pragma clang diagnostic ignored "-Wdisabled-macro-expansion"
#endif
#if __has_warning("-Wdeprecated-dynamic-exception-spec")
#pragma clang diagnostic ignored "-Wdeprecated-dynamic-exception-spec"
#endif
#if __has_warning("-Wdeprecated-copy-with-user-provided-copy")
#pragma clang diagnostic ignored "-Wdeprecated-copy-with-user-provided-copy"
#endif
#if __has_warning("-Wunused-template")
#pragma clang diagnostic ignored "-Wunused-template"
#endif
#if __has_warning("-Wsign-conversion")
#pragma clang diagnostic ignored "-Wsign-conversion"
#endif
#if __has_warning("-Wdeprecated-dynamic-exception-spec")
#pragma clang diagnostic ignored "-Wdeprecated-dynamic-exception-spec"
#endif
#if __has_warning("-Wshadow")
#pragma clang diagnostic ignored "-Wshadow"
#endif
#if __has_warning("-Wundef")
#pragma clang diagnostic ignored "-Wundef"
#endif
#if __has_warning("-Wdeprecated-copy-with-user-provided-dtor")
#pragma clang diagnostic ignored "-Wdeprecated-copy-with-user-provided-dtor"
#endif
#endif