Clang-format aos
It has drifted... Clean it up a bit.
Change-Id: I2fe31a2187b4f690634ae6942786575db20192af
Signed-off-by: Austin Schuh <austin.linux@gmail.com>
diff --git a/aos/events/simulated_event_loop.cc b/aos/events/simulated_event_loop.cc
index 4671f12..e6bc28d 100644
--- a/aos/events/simulated_event_loop.cc
+++ b/aos/events/simulated_event_loop.cc
@@ -962,7 +962,8 @@
}
std::optional<uint32_t> SimulatedChannel::Send(
- std::shared_ptr<SimulatedMessage> message, CheckSentTooFast check_sent_too_fast) {
+ std::shared_ptr<SimulatedMessage> message,
+ CheckSentTooFast check_sent_too_fast) {
const auto now = scheduler_->monotonic_now();
// Remove times that are greater than or equal to a channel_storage_duration_
// ago
@@ -1051,8 +1052,8 @@
CHECK_LE(length, message_->context.size);
message_->context.size = length;
- const std::optional<uint32_t> optional_queue_index =
- simulated_channel_->Send(message_, simulated_event_loop_->options().check_sent_too_fast);
+ const std::optional<uint32_t> optional_queue_index = simulated_channel_->Send(
+ message_, simulated_event_loop_->options().check_sent_too_fast);
// Check that we are not sending messages too fast
if (!optional_queue_index) {