# HG changeset patch # User Roland Schatz # Date 1434449993 -7200 # Node ID 007e88ccbba9780bd80f67ddc01a26afdbf9db09 # Parent 7b46c756a37c788b7e673ca82d7b8fb20b9ead7d Ignore undefined-bool-conversion warning on clang/linux. diff -r 7b46c756a37c -r 007e88ccbba9 make/linux/makefiles/gcc.make --- a/make/linux/makefiles/gcc.make Tue Jun 16 16:14:57 2015 +0200 +++ b/make/linux/makefiles/gcc.make Tue Jun 16 12:19:53 2015 +0200 @@ -213,6 +213,7 @@ WARNINGS_ARE_ERRORS += -Wno-switch -Wno-tautological-constant-out-of-range-compare -Wno-tautological-compare WARNINGS_ARE_ERRORS += -Wno-delete-non-virtual-dtor -Wno-deprecated -Wno-format -Wno-dynamic-class-memaccess WARNINGS_ARE_ERRORS += -Wno-return-type -Wno-empty-body + WARNINGS_ARE_ERRORS += -Wno-undefined-bool-conversion endif WARNING_FLAGS = -Wpointer-arith -Wsign-compare -Wundef -Wunused-function -Wunused-value