Disable -Wimplicit-fallthrough in dom/canvas

GCC 7 supports the clang option -Wimplicit-fallthrough.
This commit is contained in:
trav90 2018-03-04 15:19:38 -06:00 committed by Roy Tam
commit dc145a0b72

View file

@ -162,7 +162,7 @@ SOURCES += [
]
# Suppress warnings from third-party code.
if CONFIG['CLANG_CXX']:
if CONFIG['CLANG_CXX'] or CONFIG['GNU_CXX']:
SOURCES['MurmurHash3.cpp'].flags += ['-Wno-implicit-fallthrough']
LOCAL_INCLUDES += [