Apply clang-format.

Test: cppbor_test_external
Change-Id: If907312dc498a241f077de40745c5908fad6c15a
diff --git a/src/cppbor_parse.cpp b/src/cppbor_parse.cpp
index 33d2ab6..4715152 100644
--- a/src/cppbor_parse.cpp
+++ b/src/cppbor_parse.cpp
@@ -19,10 +19,10 @@
 #include <stack>
 
 #ifndef __TRUSTY__
-    #include <android-base/logging.h>
-    #define LOG_TAG "CppBor"
+#include <android-base/logging.h>
+#define LOG_TAG "CppBor"
 #else
-    #define CHECK(x) (void)(x)
+#define CHECK(x) (void)(x)
 #endif
 
 namespace cppbor {
@@ -32,8 +32,8 @@
 std::string insufficientLengthString(size_t bytesNeeded, size_t bytesAvail,
                                      const std::string& type) {
     char buf[1024];
-    snprintf(buf, sizeof(buf), "Need %zu byte(s) for %s, have %zu",
-             bytesNeeded, type.c_str(), bytesAvail);
+    snprintf(buf, sizeof(buf), "Need %zu byte(s) for %s, have %zu", bytesNeeded, type.c_str(),
+             bytesAvail);
     return std::string(buf);
 }
 
@@ -280,9 +280,9 @@
             // Starting a new compound data item, i.e. a new parent.  Save it on the parent stack.
             // It's safe to save a raw pointer because the unique_ptr is guaranteed to stay in
             // existence until the corresponding itemEnd() call.
-            #if __has_feature(cxx_rtti)
-                assert(dynamic_cast<CompoundItem*>(item.get()));
-            #endif
+#if __has_feature(cxx_rtti)
+            assert(dynamic_cast<CompoundItem*>(item.get()));
+#endif
             mParentStack.push(static_cast<CompoundItem*>(item.get()));
             return this;
         } else {
@@ -321,9 +321,9 @@
   private:
     void appendToLastParent(std::unique_ptr<Item> item) {
         auto parent = mParentStack.top();
-        #if __has_feature(cxx_rtti)
-            assert(dynamic_cast<IncompleteItem*>(parent));
-        #endif
+#if __has_feature(cxx_rtti)
+        assert(dynamic_cast<IncompleteItem*>(parent));
+#endif
         if (parent->type() == ARRAY) {
             static_cast<IncompleteArray*>(parent)->add(std::move(item));
         } else if (parent->type() == MAP) {