Bug 1411158 - Remove some warning exceptions in memory/build/moz.build. r=njn

Bug 1403444 massively refactored the red-black tree code, with the
result of removing the warnings the old code was triggering. We can thus
remove the exceptions for those warnings now.

--HG--
extra : rebase_source : 76c7ce7a7282471399c7592601f6986bfb33b256
This commit is contained in:
Mike Hommey 2017-10-24 14:48:05 +09:00
parent 68ff442920
commit d2222ba092

View File

@ -45,11 +45,6 @@ if CONFIG['OS_TARGET'] == 'Android' and CONFIG['CC_TYPE'] == 'clang':
FINAL_LIBRARY = 'mozglue'
if CONFIG['GNU_CXX']:
# too many warnings from functions generated through rb_wrab from rb.h.
CXXFLAGS += ['-Wno-unused-function',
'-Wno-error=uninitialized']
if CONFIG['_MSC_VER']:
CXXFLAGS += ['-wd4273'] # inconsistent dll linkage (bug 558163)