Reapply clang-format.
$ clang-format -i -style=file \
$(find . | egrep '.*\.(h|cpp|inl)$')
diff --git a/include/json/value.h b/include/json/value.h
index 8321de7..8e6b615 100644
--- a/include/json/value.h
+++ b/include/json/value.h
@@ -630,7 +630,7 @@
void setComment(const char* text, size_t len);
- char* comment_{nullptr};
+ char* comment_{ nullptr };
};
// struct MemberNamesTransform
@@ -679,7 +679,7 @@
enum Kind { kindNone = 0, kindIndex, kindKey };
JSONCPP_STRING key_;
ArrayIndex index_{};
- Kind kind_{kindNone};
+ Kind kind_{ kindNone };
};
/** \brief Experimental and untested: represents a "path" to access a node.
@@ -780,7 +780,7 @@
private:
Value::ObjectValues::iterator current_;
// Indicates that iterator is for a null value.
- bool isNull_{true};
+ bool isNull_{ true };
public:
// For some reason, BORLAND needs these at the end, rather