Skip to content

Commit 260eb4a

Browse files
committed
Running astyle [ci skip]
1 parent 98335e5 commit 260eb4a

1 file changed

Lines changed: 20 additions & 20 deletions

File tree

test/testclass.cpp

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -910,27 +910,27 @@ class TestClass : public TestFixture {
910910
}
911911

912912
void copyConstructor5() {
913-
checkCopyConstructor("class Copyable {};\n"
914-
"\n"
915-
"class Foo : public Copyable, public UnknownType {\n"
916-
"public:\n"
917-
" Foo() : m_ptr(new int) {}\n"
918-
" ~Foo() { delete m_ptr; }\n"
919-
"private:\n"
920-
" int* m_ptr;\n"
921-
"};");
922-
ASSERT_EQUALS("", errout.str());
913+
checkCopyConstructor("class Copyable {};\n"
914+
"\n"
915+
"class Foo : public Copyable, public UnknownType {\n"
916+
"public:\n"
917+
" Foo() : m_ptr(new int) {}\n"
918+
" ~Foo() { delete m_ptr; }\n"
919+
"private:\n"
920+
" int* m_ptr;\n"
921+
"};");
922+
ASSERT_EQUALS("", errout.str());
923923

924-
checkCopyConstructor("class Copyable {};\n"
925-
"\n"
926-
"class Foo : public UnknownType, public Copyable {\n"
927-
"public:\n"
928-
" Foo() : m_ptr(new int) {}\n"
929-
" ~Foo() { delete m_ptr; }\n"
930-
"private:\n"
931-
" int* m_ptr;\n"
932-
"};");
933-
ASSERT_EQUALS("", errout.str());
924+
checkCopyConstructor("class Copyable {};\n"
925+
"\n"
926+
"class Foo : public UnknownType, public Copyable {\n"
927+
"public:\n"
928+
" Foo() : m_ptr(new int) {}\n"
929+
" ~Foo() { delete m_ptr; }\n"
930+
"private:\n"
931+
" int* m_ptr;\n"
932+
"};");
933+
ASSERT_EQUALS("", errout.str());
934934
}
935935

936936
void noOperatorEq() {

0 commit comments

Comments
 (0)