From 4f5bc80db3e3fee8f829bf6f9cdd24fc796bb052 Mon Sep 17 00:00:00 2001 From: Ryan VanderMeulen Date: Sat, 24 Mar 2018 12:19:44 -0400 Subject: [PATCH] Bug 1448472 - Remove a C5037 warning suppression xpcom/string/moz.build that is no longer needed. r=xidorn --- xpcom/string/moz.build | 7 ------- 1 file changed, 7 deletions(-) diff --git a/xpcom/string/moz.build b/xpcom/string/moz.build index 65dd9c3129fd..084eb150f6c4 100644 --- a/xpcom/string/moz.build +++ b/xpcom/string/moz.build @@ -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'