remove -Wc++14-extensions flag (added in 064b99168) (#3778)

This commit is contained in:
Dane Springmeyer 2017-10-11 07:26:39 -07:00 committed by Artem Pavlenko
parent cdd8b35112
commit e5b837ff97

View file

@ -1942,7 +1942,7 @@ if not preconfigured:
common_cxx_flags = '-fvisibility=hidden -fvisibility-inlines-hidden -Wall %s %s -ftemplate-depth-300 -Wsign-compare ' % (env['WARNING_CXXFLAGS'], pthread) common_cxx_flags = '-fvisibility=hidden -fvisibility-inlines-hidden -Wall %s %s -ftemplate-depth-300 -Wsign-compare ' % (env['WARNING_CXXFLAGS'], pthread)
if 'clang++' in env['CXX']: if 'clang++' in env['CXX']:
common_cxx_flags += ' -Wno-unsequenced -Wtautological-compare -Wheader-hygiene -Wc++14-extensions ' common_cxx_flags += ' -Wno-unsequenced -Wtautological-compare -Wheader-hygiene '
if env['DEBUG']: if env['DEBUG']:
env.Append(CXXFLAGS = common_cxx_flags + '-O0') env.Append(CXXFLAGS = common_cxx_flags + '-O0')
else: else: