Skip to content

Commit f62389c

Browse files
ericsalocopybara-github
authored andcommitted
No public description
PiperOrigin-RevId: 666881556
1 parent 1cbdccb commit f62389c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

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/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

0 commit comments

Comments
 (0)