commit | 514094c364af8095bf94e4b99fb009a05415e1db | [log] [tgz] |
---|---|---|
author | Brian Osman <brianosman@google.com> | Sun Nov 12 13:53:26 2017 -0500 |
committer | Skia Commit-Bot <skia-commit-bot@chromium.org> | Sun Nov 12 19:38:16 2017 +0000 |
tree | fea37bda005d3734d95039067a5a714f1e02340d | |
parent | 24e4cc7087bc29d55c89ba77654b68d22388f11d [diff] |
Suppress warning 4577 (noexcept used with no exception handling mechanism specified) Fixes build errors with latest ANGLE, should allow roll to land. Bug: skia: Change-Id: I44c7b2ed8bf3a8dbfa70a16aed51c45f2c7d5b71 Reviewed-on: https://skia-review.googlesource.com/70461 Commit-Queue: Brian Osman <brianosman@google.com> Reviewed-by: Brian Osman <brianosman@google.com>
diff --git a/third_party/angle2/BUILD.gn b/third_party/angle2/BUILD.gn index 88bad29..c540bfa 100644 --- a/third_party/angle2/BUILD.gn +++ b/third_party/angle2/BUILD.gn
@@ -60,6 +60,9 @@ "GL_APICALL=", "EGLAPI=", ] + + # Allow noexcept, even though we build without exceptions + cflags_cc += [ "/wd4577" ] } }