Scons: Remove Werror=False in SConscript files

This patch removes the overriding of "-Werror" in a handful of
cases. The code compiles with gcc 4.6.3 and clang 3.0 without any
warnings, and thus without any errors. There are no functional changes
introduced by this patch. In the future, rather than ypassing
"-Werror", address the warnings.
This commit is contained in:
Andreas Hansson
2012-03-22 06:34:50 -04:00
parent 12742835bc
commit fb395b56dd
4 changed files with 7 additions and 13 deletions

View File

@@ -32,6 +32,6 @@ Import('*')
SimObject('NetworkTest.py')
Source('networktest.cc', Werror=False)
Source('networktest.cc')
DebugFlag('NetworkTest')