astyle formatting

[ci skip]
This commit is contained in:
Daniel Marjamäki 2020-04-08 22:39:17 +02:00
parent 7719e4309d
commit 37a4e375ba
1 changed files with 8 additions and 8 deletions

View File

@ -513,14 +513,14 @@ private:
ASSERT_EQUALS("[test.cpp:3]: (style) struct member 'AB::a' is never used.\n", errout.str());
checkStructMemberUsage("struct A\n"
"{\n"
" static const int a = 0;\n"
"};\n"
"\n"
"int foo()\n"
"{\n"
" return A::a;\n"
"}");
"{\n"
" static const int a = 0;\n"
"};\n"
"\n"
"int foo()\n"
"{\n"
" return A::a;\n"
"}");
ASSERT_EQUALS("", errout.str());
}