Commit e25fbce8 authored by Masatoshi Kimura's avatar Masatoshi Kimura
Browse files

Bug 1528651 - Re-enable warnings-as-errors on Windows in some directories. r=dmajor

--HG--
extra : source : ba86ea25070b37f4725834e1c2d9ec4c0783e119
parent 715863c1
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -119,6 +119,3 @@ include('/ipc/chromium/chromium-config.mozbuild')

if CONFIG['CC_TYPE'] in ('clang', 'gcc'):
    CXXFLAGS += ['-Wno-error=shadow']

if CONFIG['CC_TYPE'] == 'clang-cl':
    AllowCompilerWarnings()  # workaround for bug 1090497
+0 −3
Original line number Diff line number Diff line
@@ -74,6 +74,3 @@ include('/ipc/chromium/chromium-config.mozbuild')

if CONFIG['CC_TYPE'] in ('clang', 'gcc'):
    CXXFLAGS += ['-Wno-error=shadow']

if CONFIG['CC_TYPE'] == 'clang-cl':
    AllowCompilerWarnings()  # workaround for bug 1090497
+0 −3
Original line number Diff line number Diff line
@@ -66,6 +66,3 @@ FINAL_LIBRARY = 'xul'

# Add libFuzzer configuration directives
include('/tools/fuzzing/libfuzzer-config.mozbuild')

if CONFIG['CC_TYPE'] == 'clang-cl':
    AllowCompilerWarnings()  # workaround for bug 1090497
+0 −3
Original line number Diff line number Diff line
@@ -82,6 +82,3 @@ LIBRARY_DEFINES['UNICODE'] = True
LIBRARY_DEFINES['_UNICODE'] = True
LIBRARY_DEFINES['MOZ_NO_MOZALLOC'] = True
DisableStlWrapping()

if CONFIG['CC_TYPE'] == 'clang-cl':
    AllowCompilerWarnings()  # workaround for bug 1090497
+0 −3
Original line number Diff line number Diff line
@@ -83,6 +83,3 @@ if CONFIG['CC_TYPE'] == 'clang-cl':
include('/ipc/chromium/chromium-config.mozbuild')

FINAL_LIBRARY = 'xul'

if CONFIG['CC_TYPE'] == 'clang-cl':
    AllowCompilerWarnings()  # workaround for bug 1090497
Loading