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/actions/action_test.cc b/aos/actions/action_test.cc
index e7a3c53..2638cdc 100644
--- a/aos/actions/action_test.cc
+++ b/aos/actions/action_test.cc
@@ -4,14 +4,13 @@
#include <memory>
#include <thread>
-#include "gtest/gtest.h"
-
#include "aos/actions/actions.h"
#include "aos/actions/actions_generated.h"
#include "aos/actions/actor.h"
#include "aos/actions/test_action_generated.h"
#include "aos/events/simulated_event_loop.h"
#include "aos/testing/path.h"
+#include "gtest/gtest.h"
namespace aos {
namespace common {
diff --git a/aos/actions/actions.cc b/aos/actions/actions.cc
index 67d8b24..764cb6c 100644
--- a/aos/actions/actions.cc
+++ b/aos/actions/actions.cc
@@ -46,10 +46,10 @@
bool ActionQueue::Running() { return static_cast<bool>(current_action_); }
-bool ActionQueue::GetCurrentActionState(bool* has_started, bool* sent_started,
- bool* sent_cancel, bool* interrupted,
- uint32_t* run_value,
- uint32_t* old_run_value) {
+bool ActionQueue::GetCurrentActionState(bool *has_started, bool *sent_started,
+ bool *sent_cancel, bool *interrupted,
+ uint32_t *run_value,
+ uint32_t *old_run_value) {
if (current_action_) {
current_action_->GetState(has_started, sent_started, sent_cancel,
interrupted, run_value, old_run_value);
@@ -58,10 +58,10 @@
return false;
}
-bool ActionQueue::GetNextActionState(bool* has_started, bool* sent_started,
- bool* sent_cancel, bool* interrupted,
- uint32_t* run_value,
- uint32_t* old_run_value) {
+bool ActionQueue::GetNextActionState(bool *has_started, bool *sent_started,
+ bool *sent_cancel, bool *interrupted,
+ uint32_t *run_value,
+ uint32_t *old_run_value) {
if (next_action_) {
next_action_->GetState(has_started, sent_started, sent_cancel, interrupted,
run_value, old_run_value);