astyle formatting

This commit is contained in:
Daniel Marjamäki 2015-07-14 18:09:28 +02:00
parent a75872a15e
commit cf53074fd9
1 changed files with 2 additions and 2 deletions

View File

@ -6012,7 +6012,7 @@ private:
" Fred(int x);\n" " Fred(int x);\n"
"};\n" "};\n"
"Fred::Fred(int x) : x(x) { }\n" "Fred::Fred(int x) : x(x) { }\n"
); );
ASSERT_EQUALS("", errout.str()); ASSERT_EQUALS("", errout.str());
checkSelfInitialization("class Fred {\n" checkSelfInitialization("class Fred {\n"
@ -6020,7 +6020,7 @@ private:
" Fred(int x);\n" " Fred(int x);\n"
"};\n" "};\n"
"Fred::Fred(int x) : x{x} { }\n" "Fred::Fred(int x) : x{x} { }\n"
); );
ASSERT_EQUALS("", errout.str()); ASSERT_EQUALS("", errout.str());
checkSelfInitialization("class Fred {\n" checkSelfInitialization("class Fred {\n"