예제 #1
0
 ~MyObject4() {
     print_destroyed(this);
 }
예제 #2
0
 ~B() { print_destroyed(this); }
예제 #3
0
 virtual ~MyObject3() {
     print_destroyed(this);
 }
예제 #4
0
 ~Matrix() {
     print_destroyed(this, std::to_string(m_rows) + "x" + std::to_string(m_cols) + " matrix");
     delete[] m_data;
 }
예제 #5
0
 ~TypeForMoveOnlyHolderWithAddressOf() { print_destroyed(this); }
예제 #6
0
 ~ReturnTester() { print_destroyed(this); }
예제 #7
0
파일: test.cpp 프로젝트: weoirp/tools
	~NoConstructor() { print_destroyed(this); }
 ~ExampleMandA() { print_destroyed(this); }