0
|
1 |
# 111: Statement is unreachable
|
|
2 |
# 185: Dynamic initialization in unreachable code
|
|
3 |
# 191: Type qualifier is meaningless on cast type
|
|
4 |
# 368: class "<class>" defines no constructor to initialize the following: <member>
|
|
5 |
# (Disabled because there are other ways of assigning besides constructors)
|
|
6 |
# 1293: Assignment in condition
|
|
7 |
# 1294: pre-ANSI C style functions declarations (used a lot in 3rd party code)
|
|
8 |
# 2874: <variable> may be used before being set (this one sounds useful, but
|
|
9 |
# it's output also for class instances, making it useless in practice)
|
|
10 |
QMAKE_CFLAGS.ARMCC += --diag_suppress 111,185,191,368,1293,1294,2874
|