aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/angle2
diff options
context:
space:
mode:
authorGravatar Brian Osman <brianosman@google.com>2017-11-12 13:53:26 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-11-12 19:38:16 +0000
commit514094c364af8095bf94e4b99fb009a05415e1db (patch)
treefea37bda005d3734d95039067a5a714f1e02340d /third_party/angle2
parent24e4cc7087bc29d55c89ba77654b68d22388f11d (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>
Diffstat (limited to 'third_party/angle2')
-rw-r--r--third_party/angle2/BUILD.gn3
1 files changed, 3 insertions, 0 deletions
diff --git a/third_party/angle2/BUILD.gn b/third_party/angle2/BUILD.gn
index 88bad29434..c540bfa669 100644
--- a/third_party/angle2/BUILD.gn
+++ b/third_party/angle2/BUILD.gn
@@ -60,6 +60,9 @@ config("common") {
"GL_APICALL=",
"EGLAPI=",
]
+
+ # Allow noexcept, even though we build without exceptions
+ cflags_cc += [ "/wd4577" ]
}
}