Apply the formatting specified in .clang-format file.
$ clang-format --version
clang-format version 7.0.0 (tags/google/stable/2018-01-11)
$ clang-format -i --style=file $(find . -name '*.cpp' -o -name '*.h')
diff --git a/include/json/json.h b/include/json/json.h
index 3d2798a..19f14c2 100644
--- a/include/json/json.h
+++ b/include/json/json.h
@@ -7,9 +7,9 @@
#define JSON_JSON_H_INCLUDED
#include "autolink.h"
-#include "value.h"
-#include "reader.h"
-#include "writer.h"
#include "features.h"
+#include "reader.h"
+#include "value.h"
+#include "writer.h"
#endif // JSON_JSON_H_INCLUDED