From 499bea182c7026209b747a61602778e7e6aa8c8e Mon Sep 17 00:00:00 2001 From: Jeremy Rifkin <51220084+jeremy-rifkin@users.noreply.github.com> Date: Fri, 6 Sep 2024 17:24:52 -0500 Subject: [PATCH] Reduce bazel build to -std=c++11 --- BUILD.bazel | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BUILD.bazel b/BUILD.bazel index f54ab7c..0aead56 100644 --- a/BUILD.bazel +++ b/BUILD.bazel @@ -28,7 +28,7 @@ cc_library( "-Wundef", "-Wuninitialized", "-fPIC", - "-std=c++17" + "-std=c++11" ], visibility = ["//visibility:public"], )