Skip to content

Commit

Permalink
build: Do not warn about C99 extensions
Browse files Browse the repository at this point in the history
Change-Id: I9a0ca5d47dc80bec99b6a456fc025b41428377dc
  • Loading branch information
bruinfish committed Aug 26, 2014
1 parent ec13d58 commit 5ab7a9c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ChronoSync
2 changes: 1 addition & 1 deletion waf-tools/default-compiler-flags.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def configure(conf):
if conf.options.use_cxx11:
defaultFlags += ['-std=c++0x', '-std=c++11']
else:
defaultFlags += ['-std=c++03']
defaultFlags += ['-std=c++03', '-Wno-variadic-macros', '-Wno-c99-extensions']

defaultFlags += ['-pedantic', '-Wall', '-Wno-long-long', '-Wno-unneeded-internal-declaration',
'-Wno-c++11-extensions', '-Wno-nested-anon-types']
Expand Down

0 comments on commit 5ab7a9c

Please sign in to comment.