Reapply clang-format.
$ clang-format -i -style=file \
$(find . | egrep '.*\.(h|cpp|inl)$')
diff --git a/include/json/writer.h b/include/json/writer.h
index 10a1c8e..cf6f0c6 100644
--- a/include/json/writer.h
+++ b/include/json/writer.h
@@ -189,9 +189,9 @@
void writeValue(const Value& value);
JSONCPP_STRING document_;
- bool yamlCompatibilityEnabled_{false};
- bool dropNullPlaceholders_{false};
- bool omitEndingLineFeed_{false};
+ bool yamlCompatibilityEnabled_{ false };
+ bool dropNullPlaceholders_{ false };
+ bool omitEndingLineFeed_{ false };
};
#if defined(_MSC_VER)
#pragma warning(pop)
@@ -257,9 +257,9 @@
ChildValues childValues_;
JSONCPP_STRING document_;
JSONCPP_STRING indentString_;
- unsigned int rightMargin_{74};
- unsigned int indentSize_{3};
- bool addChildValues_{false};
+ unsigned int rightMargin_{ 74 };
+ unsigned int indentSize_{ 3 };
+ bool addChildValues_{ false };
};
#if defined(_MSC_VER)
#pragma warning(pop)
@@ -331,7 +331,7 @@
ChildValues childValues_;
JSONCPP_OSTREAM* document_;
JSONCPP_STRING indentString_;
- unsigned int rightMargin_{74};
+ unsigned int rightMargin_{ 74 };
JSONCPP_STRING indentation_;
bool addChildValues_ : 1;
bool indented_ : 1;