mirror of https://github.com/ArduPilot/ardupilot
disable the re-ordered initialisation warnings
these are not useful for us, and will always happen with our parameter code git-svn-id: https://arducopter.googlecode.com/svn/trunk@2561 f9c3cf11-9bcb-44bc-f272-b75c42450872
This commit is contained in:
parent
24491fce74
commit
60ae24dca6
|
@ -159,7 +159,7 @@ endif
|
|||
# Tool options
|
||||
#
|
||||
DEFINES = -DF_CPU=$(F_CPU) -DARDUINO=$(ARDUINO_VERS)
|
||||
OPTFLAGS = -Os -Wformat -Wall -Wshadow -Wpointer-arith -Wcast-align -Wwrite-strings -Wformat=2
|
||||
OPTFLAGS = -Os -Wformat -Wall -Wshadow -Wpointer-arith -Wcast-align -Wwrite-strings -Wformat=2 -Wno-reorder
|
||||
DEPFLAGS = -MD -MT $@
|
||||
|
||||
# XXX warning options TBD
|
||||
|
|
Loading…
Reference in New Issue