From 9b74932b942910c126d4d6e883a7f27ca64a9083 Mon Sep 17 00:00:00 2001 From: Andrei Litvin Date: Mon, 17 Oct 2022 17:52:38 -0400 Subject: [PATCH] Restyle --- build/config/compiler/BUILD.gn | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/config/compiler/BUILD.gn b/build/config/compiler/BUILD.gn index 2b0853b42fad1c..52dc114cde5d73 100644 --- a/build/config/compiler/BUILD.gn +++ b/build/config/compiler/BUILD.gn @@ -263,8 +263,8 @@ config("strict_warnings") { # TODO: can make this back fatal in once pigweed updates can be take again # # Currently `./scripts/build/build_examples.py --target linux-arm64-light-rpc-ipv6only-clang build` - # fails in third_party/pigweed/repo/pw_protobuf - if ((current_cpu == "arm64") && (current_os == "linux")) { + # fails in third_party/pigweed/repo/pw_protobuf + if (current_cpu == "arm64" && current_os == "linux") { cflags += [ "-Wno-error=shorten-64-to-32" ] } }