From e8a152ed7ed4961e9823f4fec62792d3fac348c3 Mon Sep 17 00:00:00 2001 From: Pandemic-Sim Team Date: Thu, 31 Oct 2024 09:09:01 -0700 Subject: [PATCH] Automated Code Change PiperOrigin-RevId: 691825385 --- agent_based_epidemic_sim/agent_synthesis/BUILD | 2 ++ agent_based_epidemic_sim/applications/contact_tracing/BUILD | 2 ++ agent_based_epidemic_sim/applications/home_work/BUILD | 2 ++ agent_based_epidemic_sim/applications/risk_learning/BUILD | 1 + .../applications/risk_learning/observers_test.cc | 4 +++- agent_based_epidemic_sim/core/BUILD | 1 + agent_based_epidemic_sim/port/deps/BUILD | 2 ++ agent_based_epidemic_sim/port/deps/status_builder.h | 2 +- agent_based_epidemic_sim/port/testdata/BUILD | 2 ++ 9 files changed, 16 insertions(+), 2 deletions(-) diff --git a/agent_based_epidemic_sim/agent_synthesis/BUILD b/agent_based_epidemic_sim/agent_synthesis/BUILD index 2a89e468..0178cc0f 100644 --- a/agent_based_epidemic_sim/agent_synthesis/BUILD +++ b/agent_based_epidemic_sim/agent_synthesis/BUILD @@ -1,5 +1,7 @@ # Libraries for synthesizing agents. +load("//third_party/protobuf/bazel:proto_library.bzl", "proto_library") + licenses(["notice"]) package(default_visibility = [ diff --git a/agent_based_epidemic_sim/applications/contact_tracing/BUILD b/agent_based_epidemic_sim/applications/contact_tracing/BUILD index ce0c00d4..02aa0193 100644 --- a/agent_based_epidemic_sim/applications/contact_tracing/BUILD +++ b/agent_based_epidemic_sim/applications/contact_tracing/BUILD @@ -1,5 +1,7 @@ # Libraries for contact tracing simulation. +load("//third_party/protobuf/bazel:proto_library.bzl", "proto_library") + licenses(["notice"]) proto_library( diff --git a/agent_based_epidemic_sim/applications/home_work/BUILD b/agent_based_epidemic_sim/applications/home_work/BUILD index 9fc37237..62cefb5b 100644 --- a/agent_based_epidemic_sim/applications/home_work/BUILD +++ b/agent_based_epidemic_sim/applications/home_work/BUILD @@ -1,5 +1,7 @@ # Packages for the simplified home-work simulation application. +load("//third_party/protobuf/bazel:proto_library.bzl", "proto_library") + licenses(["notice"]) package(default_visibility = [ diff --git a/agent_based_epidemic_sim/applications/risk_learning/BUILD b/agent_based_epidemic_sim/applications/risk_learning/BUILD index c900b4ba..86f6a812 100644 --- a/agent_based_epidemic_sim/applications/risk_learning/BUILD +++ b/agent_based_epidemic_sim/applications/risk_learning/BUILD @@ -15,6 +15,7 @@ # Libraries for contact tracing simulation. load("@com_google_protobuf//:protobuf.bzl", "py_proto_library") +load("//third_party/protobuf/bazel:proto_library.bzl", "proto_library") package(default_visibility = [ "//agent_based_epidemic_sim:internal", diff --git a/agent_based_epidemic_sim/applications/risk_learning/observers_test.cc b/agent_based_epidemic_sim/applications/risk_learning/observers_test.cc index a40ded3f..b98ea31e 100644 --- a/agent_based_epidemic_sim/applications/risk_learning/observers_test.cc +++ b/agent_based_epidemic_sim/applications/risk_learning/observers_test.cc @@ -40,7 +40,9 @@ std::unique_ptr MakeAgentInState(HealthState::State state, TEST(SummaryObserverTest, CreationOfSummaryObserverFactoryCanOverwriteFiles) { std::string summary_filename = absl::StrCat(getenv("TEST_TMPDIR"), "/", "summary"); - { SummaryObserverFactory old_factory(summary_filename); } + { + SummaryObserverFactory old_factory(summary_filename); + } { SummaryObserverFactory factory(summary_filename); Timestep timestep(absl::UnixEpoch(), absl::Hours(24)); diff --git a/agent_based_epidemic_sim/core/BUILD b/agent_based_epidemic_sim/core/BUILD index 488e6853..9a831868 100644 --- a/agent_based_epidemic_sim/core/BUILD +++ b/agent_based_epidemic_sim/core/BUILD @@ -13,6 +13,7 @@ # limitations under the License. load("@com_google_protobuf//:protobuf.bzl", "py_proto_library") +load("//third_party/protobuf/bazel:proto_library.bzl", "proto_library") licenses(["notice"]) diff --git a/agent_based_epidemic_sim/port/deps/BUILD b/agent_based_epidemic_sim/port/deps/BUILD index 3f673ee5..39abf94e 100644 --- a/agent_based_epidemic_sim/port/deps/BUILD +++ b/agent_based_epidemic_sim/port/deps/BUILD @@ -1,5 +1,7 @@ # Ported dependencies. +load("//third_party/protobuf/bazel:proto_library.bzl", "proto_library") + licenses(["notice"]) package(default_visibility = [ diff --git a/agent_based_epidemic_sim/port/deps/status_builder.h b/agent_based_epidemic_sim/port/deps/status_builder.h index 8d9165e7..b3db38bd 100644 --- a/agent_based_epidemic_sim/port/deps/status_builder.h +++ b/agent_based_epidemic_sim/port/deps/status_builder.h @@ -220,7 +220,7 @@ class ABSL_MUST_USE_RESULT StatusBuilder { } template auto With(Adaptor&& adaptor) && -> decltype(std::forward(adaptor)( - std::move(*this))) { + std::move(*this))) { return std::forward(adaptor)(std::move(*this)); } diff --git a/agent_based_epidemic_sim/port/testdata/BUILD b/agent_based_epidemic_sim/port/testdata/BUILD index 534a3ef2..8675deb7 100644 --- a/agent_based_epidemic_sim/port/testdata/BUILD +++ b/agent_based_epidemic_sim/port/testdata/BUILD @@ -1,5 +1,7 @@ # Test data for ported libraries. +load("//third_party/protobuf/bazel:proto_library.bzl", "proto_library") + licenses(["notice"]) package(default_visibility = ["//visibility:public"])