update .clang-format

Added the header inclusion order to the .clang-format file generated
these changes.

Change-Id: I4f51a20f469de431ee6a5ba78e3f4da39c980fab
Signed-off-by: Patrick Venture <venture@google.com>
diff --git a/mslverify/verify.cpp b/mslverify/verify.cpp
index c9c06aa..a4b3ece 100644
--- a/mslverify/verify.cpp
+++ b/mslverify/verify.cpp
@@ -14,14 +14,16 @@
  * limitations under the License.
  */
 
+#include "util.hpp"
+
 #include <algorithm>
 #include <map>
 #include <string>
-#include "util.hpp"
 
 using namespace std::literals::string_literals;
 
-template <typename T> struct BusMeetsMSL
+template <typename T>
+struct BusMeetsMSL
 {
     std::string path;
 
@@ -43,7 +45,8 @@
     }
 };
 
-template <typename T> struct PathMeetsMSL
+template <typename T>
+struct PathMeetsMSL
 {
     auto operator()(const T& arg)
     {