0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-30 17:10:48 +01:00

SERVER-16410 suppress missing-braces warning on clang

This commit is contained in:
Eric Milkie 2014-12-03 16:18:38 -05:00
parent 293c0ca515
commit 03c5bd928d

View File

@ -1398,6 +1398,10 @@ def doConfigure(myenv):
# GCC >= 4.6. Error explained in https://svn.boost.org/trac/boost/ticket/6136 .
AddToCCFLAGSIfSupported(myenv, "-Wno-unused-but-set-variable")
# This has been suppressed in gcc 4.8, due to false positives, but not in clang. So
# we explicitly disable it here.
AddToCCFLAGSIfSupported(myenv, "-Wno-missing-braces")
# Check if we need to disable null-conversion warnings
if using_clang():
def CheckNullConversion(context):