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/util/global_factory.h b/aos/util/global_factory.h
index 5e47972..2a4028e 100644
--- a/aos/util/global_factory.h
+++ b/aos/util/global_factory.h
@@ -67,7 +67,7 @@
   class SubClassRegisterer {
    public:
     explicit SubClassRegisterer(const char *name) {
-      (*GetMap())[name] = [](FactoryArgs &&... args) {
+      (*GetMap())[name] = [](FactoryArgs &&...args) {
         return std::unique_ptr<BaseClass>(
             new SubClass(std::forward<FactoryArgs>(args)...));
       };