Skip to content

Commit e75c9d4

Browse files
Pandemic-Sim Teamcopybara-github
authored andcommitted
Automated Code Change
PiperOrigin-RevId: 691825385
1 parent 1cbdccb commit e75c9d4

File tree

9 files changed

+16
-2
lines changed

9 files changed

+16
-2
lines changed

agent_based_epidemic_sim/agent_synthesis/BUILD

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Libraries for synthesizing agents.
22

3+
load("//third_party/protobuf/bazel:proto_library.bzl", "proto_library")
4+
35
licenses(["notice"])
46

57
package(default_visibility = [

agent_based_epidemic_sim/applications/contact_tracing/BUILD

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Libraries for contact tracing simulation.
22

3+
load("//third_party/protobuf/bazel:proto_library.bzl", "proto_library")
4+
35
licenses(["notice"])
46

57
proto_library(

agent_based_epidemic_sim/applications/home_work/BUILD

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Packages for the simplified home-work simulation application.
22

3+
load("//third_party/protobuf/bazel:proto_library.bzl", "proto_library")
4+
35
licenses(["notice"])
46

57
package(default_visibility = [

agent_based_epidemic_sim/applications/risk_learning/BUILD

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
# Libraries for contact tracing simulation.
1616

1717
load("@com_google_protobuf//:protobuf.bzl", "py_proto_library")
18+
load("//third_party/protobuf/bazel:proto_library.bzl", "proto_library")
1819

1920
package(default_visibility = [
2021
"//agent_based_epidemic_sim:internal",

agent_based_epidemic_sim/applications/risk_learning/observers_test.cc

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,9 @@ std::unique_ptr<Agent> MakeAgentInState(HealthState::State state,
4040
TEST(SummaryObserverTest, CreationOfSummaryObserverFactoryCanOverwriteFiles) {
4141
std::string summary_filename =
4242
absl::StrCat(getenv("TEST_TMPDIR"), "/", "summary");
43-
{ SummaryObserverFactory old_factory(summary_filename); }
43+
{
44+
SummaryObserverFactory old_factory(summary_filename);
45+
}
4446
{
4547
SummaryObserverFactory factory(summary_filename);
4648
Timestep timestep(absl::UnixEpoch(), absl::Hours(24));

agent_based_epidemic_sim/core/BUILD

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
# limitations under the License.
1414

1515
load("@com_google_protobuf//:protobuf.bzl", "py_proto_library")
16+
load("//third_party/protobuf/bazel:proto_library.bzl", "proto_library")
1617

1718
licenses(["notice"])
1819

agent_based_epidemic_sim/port/deps/BUILD

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Ported dependencies.
22

3+
load("//third_party/protobuf/bazel:proto_library.bzl", "proto_library")
4+
35
licenses(["notice"])
46

57
package(default_visibility = [

agent_based_epidemic_sim/port/deps/status_builder.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ class ABSL_MUST_USE_RESULT StatusBuilder {
220220
}
221221
template <typename Adaptor>
222222
auto With(Adaptor&& adaptor) && -> decltype(std::forward<Adaptor>(adaptor)(
223-
std::move(*this))) {
223+
std::move(*this))) {
224224
return std::forward<Adaptor>(adaptor)(std::move(*this));
225225
}
226226

agent_based_epidemic_sim/port/testdata/BUILD

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Test data for ported libraries.
22

3+
load("//third_party/protobuf/bazel:proto_library.bzl", "proto_library")
4+
35
licenses(["notice"])
46

57
package(default_visibility = ["//visibility:public"])

0 commit comments

Comments
 (0)