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/logging/dynamic_logging.cc b/aos/logging/dynamic_logging.cc
index d28fba2..1120a94 100644
--- a/aos/logging/dynamic_logging.cc
+++ b/aos/logging/dynamic_logging.cc
@@ -1,4 +1,5 @@
#include "aos/logging/dynamic_logging.h"
+
#include "glog/logging.h"
namespace aos {
diff --git a/aos/logging/dynamic_logging.h b/aos/logging/dynamic_logging.h
index 9fd8fd0..7309bfc 100644
--- a/aos/logging/dynamic_logging.h
+++ b/aos/logging/dynamic_logging.h
@@ -1,6 +1,6 @@
#include <string>
-#include "aos/events/event_loop.h"
+#include "aos/events/event_loop.h"
#include "aos/logging/dynamic_log_command_generated.h"
#include "glog/logging.h"
diff --git a/aos/logging/dynamic_logging_test.cc b/aos/logging/dynamic_logging_test.cc
index 216193c..e9cb475 100644
--- a/aos/logging/dynamic_logging_test.cc
+++ b/aos/logging/dynamic_logging_test.cc
@@ -1,8 +1,9 @@
+#include "aos/logging/dynamic_logging.h"
+
#include <sys/stat.h>
#include "aos/events/event_loop.h"
#include "aos/events/simulated_event_loop.h"
-#include "aos/logging/dynamic_logging.h"
#include "aos/testing/path.h"
#include "glog/logging.h"
#include "gtest/gtest.h"
diff --git a/aos/logging/logging.h b/aos/logging/logging.h
index c4a8e56..c71e5c4 100644
--- a/aos/logging/logging.h
+++ b/aos/logging/logging.h
@@ -174,7 +174,8 @@
// base/logging.h provides its own #defines for the simpler names EQ, NE, etc.
// This happens if, for example, those are used as token names in a
// yacc grammar.
-AOS_DEFINE_CHECK_OP_IMPL(Check_EQ, ==) // Compilation error with CHECK_EQ(NULL, x)?
+AOS_DEFINE_CHECK_OP_IMPL(Check_EQ,
+ ==) // Compilation error with CHECK_EQ(NULL, x)?
AOS_DEFINE_CHECK_OP_IMPL(Check_NE, !=) // Use CHECK(x == NULL) instead.
AOS_DEFINE_CHECK_OP_IMPL(Check_LE, <=)
AOS_DEFINE_CHECK_OP_IMPL(Check_LT, <)