Run clang-format on the entire repo
This patch clang-formats the entire repo. Third-party code is
excluded.
I needed to fix up the .clang-format file so that all the header
includes are ordered properly. I could have sworn that it used to work
without the extra modification, but I guess not.
Signed-off-by: Philipp Schrader <philipp.schrader@gmail.com>
Change-Id: I64bb9f2c795401393f9dfe2fefc4f04cb36b52f6
diff --git a/y2017/vision/debug_viewer.cc b/y2017/vision/debug_viewer.cc
index 10dd57e..79b9800 100644
--- a/y2017/vision/debug_viewer.cc
+++ b/y2017/vision/debug_viewer.cc
@@ -1,18 +1,18 @@
-#include <Eigen/Dense>
#include <iostream>
-#include "y2017/vision/target_finder.h"
+#include <Eigen/Dense>
#include "aos/vision/blob/move_scale.h"
#include "aos/vision/blob/stream_view.h"
#include "aos/vision/blob/transpose.h"
#include "aos/vision/debug/debug_framework.h"
#include "aos/vision/math/vector.h"
+#include "y2017/vision/target_finder.h"
-using aos::vision::ImageRange;
-using aos::vision::ImageFormat;
-using aos::vision::RangeImage;
using aos::vision::BlobList;
+using aos::vision::ImageFormat;
+using aos::vision::ImageRange;
+using aos::vision::RangeImage;
namespace y2017 {
namespace vision {