Bug 1448472 - Remove a C5037 warning suppression xpcom/string/moz.build that is no longer needed. r=xidorn

This commit is contained in:
Ryan VanderMeulen 2018-03-24 12:19:44 -04:00
Родитель 276fbcf9e9
Коммит 4f5bc80db3
1 изменённых файлов: 0 добавлений и 7 удалений

Просмотреть файл

@ -61,11 +61,4 @@ if CONFIG['BUILD_ARM_NEON'] or CONFIG['CPU_ARCH'] == 'aarch64':
SOURCES += ['nsUTF8UtilsNEON.cpp']
SOURCES['nsUTF8UtilsNEON.cpp'].flags += CONFIG['NEON_FLAGS']
# MSVC 2017 has a bug that incorrectly generates C5037 warning which
# hits the template string code. We need to disable this warning as a
# workaround. See https://developercommunity.visualstudio.com/
# content/problem/81223/incorrect-error-c5037-with-permissive.html
if CONFIG['CC_TYPE'] in ('msvc', 'clang-cl'):
CXXFLAGS += ['-wd5037']
FINAL_LIBRARY = 'xul'