Home | Info | Community | Development | myReactOS | Contact Us
[protected]
Definition at line 181 of file sort_test.cpp.
{ bool copy_constructor_called = false; SortTestAux instance(copy_constructor_called); SortTestAux &r_instance = instance; SortTestAux const& rc_instance = instance; SortTestFunc(r_instance); CPPUNIT_ASSERT(copy_constructor_called); copy_constructor_called = false; SortTestFunc(rc_instance); CPPUNIT_ASSERT(copy_constructor_called); }