From 4449b0c265b38bb6abe9293ad78e6558b7dee43d Mon Sep 17 00:00:00 2001 From: glennsl Date: Thu, 4 Nov 2021 20:05:58 +0100 Subject: [PATCH] fix: disable four-char-constants warning --- gn/BUILD.gn | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gn/BUILD.gn b/gn/BUILD.gn index 955742ea7548..6e4e7ff38b47 100644 --- a/gn/BUILD.gn +++ b/gn/BUILD.gn @@ -387,6 +387,9 @@ config("warnings") { "-Wno-suggest-override", "-Wno-uninitialized-const-reference", + # clang 12? fixes + "-Wno-four-char-constants", + # macOS cross-compilation fix "-Wno-poison-system-directories", ]