forked from Archive/PX4-Autopilot
More pedantic warnings
This commit is contained in:
parent
1196fb03c7
commit
27755806d5
|
@ -125,7 +125,11 @@ ARCHWARNINGS = -Wall \
|
||||||
-Wlogical-op \
|
-Wlogical-op \
|
||||||
-Wmissing-declarations \
|
-Wmissing-declarations \
|
||||||
-Wpacked \
|
-Wpacked \
|
||||||
-Wno-unused-parameter
|
-Wno-unused-parameter \
|
||||||
|
-Werror=format-security \
|
||||||
|
-Werror=array-bounds \
|
||||||
|
-Wfatal-errors \
|
||||||
|
-Wformat=1
|
||||||
# -Wcast-qual - generates spurious noreturn attribute warnings, try again later
|
# -Wcast-qual - generates spurious noreturn attribute warnings, try again later
|
||||||
# -Wconversion - would be nice, but too many "risky-but-safe" conversions in the code
|
# -Wconversion - would be nice, but too many "risky-but-safe" conversions in the code
|
||||||
# -Wcast-align - would help catch bad casts in some cases, but generates too many false positives
|
# -Wcast-align - would help catch bad casts in some cases, but generates too many false positives
|
||||||
|
|
Loading…
Reference in New Issue