clang-format

This commit is contained in:
Christopher Dunn
2020-10-10 10:29:19 -05:00
parent c60ebf787a
commit 5d1cb30e40
3 changed files with 3 additions and 3 deletions

View File

@@ -3920,8 +3920,7 @@ class VersionTest : public JsonTest::TestCase {};
JSONTEST_FIXTURE_LOCAL(VersionTest, VersionNumbersMatch) {
std::ostringstream vstr;
vstr << JSONCPP_VERSION_MAJOR << '.'
<< JSONCPP_VERSION_MINOR << '.'
vstr << JSONCPP_VERSION_MAJOR << '.' << JSONCPP_VERSION_MINOR << '.'
<< JSONCPP_VERSION_PATCH;
JSONTEST_ASSERT_EQUAL(vstr.str(), std::string(JSONCPP_VERSION_STRING));
}