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/vision/blob/range_image.h b/aos/vision/blob/range_image.h
index a735442..d962788 100644
--- a/aos/vision/blob/range_image.h
+++ b/aos/vision/blob/range_image.h
@@ -38,8 +38,12 @@
   RangeImage() {}
 
   bool operator==(const RangeImage &other) const {
-    if (min_y_ != other.min_y_) { return false; }
-    if (ranges_ != other.ranges_) { return false; }
+    if (min_y_ != other.min_y_) {
+      return false;
+    }
+    if (ranges_ != other.ranges_) {
+      return false;
+    }
     return true;
   }
   bool operator!=(const RangeImage &other) const { return !(*this == other); }