From: Matt Sarett Date: Wed, 4 Jan 2017 22:13:44 +0000 (-0500) Subject: Disable clang -Wsigned-enum-bitfield warnings X-Git-Tag: accepted/tizen/5.0/unified/20181102.025319~55^2~1005 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d3ed402617ab5f157bdf2da20e5808d7730116aa;p=platform%2Fupstream%2FlibSkiaSharp.git Disable clang -Wsigned-enum-bitfield warnings Full error text: error: enums in the Microsoft ABI are signed integers by default; consider giving the enum Properties an unsigned underlying type to make this code portable [-Werror,-Wsigned-enum-bitfield] BUG=skia: Change-Id: I1491dd94c894e383fed401880fc04562140f7a66 Reviewed-on: https://skia-review.googlesource.com/6594 Reviewed-by: Mike Klein Commit-Queue: Matt Sarett --- diff --git a/gn/BUILD.gn b/gn/BUILD.gn index 3b50286..32794ab 100644 --- a/gn/BUILD.gn +++ b/gn/BUILD.gn @@ -313,6 +313,7 @@ config("warnings") { "-Wno-shadow", "-Wno-shift-sign-overflow", "-Wno-sign-conversion", + "-Wno-signed-enum-bitfield", "-Wno-switch-enum", "-Wno-undef", "-Wno-unreachable-code",