Issue #457 - Silence some superfluous compiler warnings in cairo

This commit is contained in:
Moonchild 2020-05-13 10:15:24 +00:00 committed by Roy Tam
commit b2a716b2f1

View file

@ -214,6 +214,11 @@ if CONFIG['MOZ_TREE_FREETYPE']:
DEFINES['FT_LCD_FILTER_H'] = '%s/modules/freetype2/include/freetype/ftlcdfil.h' % TOPSRCDIR
# Suppress warnings in third-party code.
if CONFIG['_MSC_VER']:
CFLAGS += [
'-wd4005',
'-wd4146',
]
if CONFIG['GNU_CC'] or CONFIG['CLANG_CL']:
CFLAGS += [
'-Wno-enum-compare',