Exemple #1
0
 ~MyObject4() {
     print_destroyed(this);
 }
Exemple #2
0
 ~B() { print_destroyed(this); }
Exemple #3
0
 virtual ~MyObject3() {
     print_destroyed(this);
 }
Exemple #4
0
 ~Matrix() {
     print_destroyed(this, std::to_string(m_rows) + "x" + std::to_string(m_cols) + " matrix");
     delete[] m_data;
 }
 ~TypeForMoveOnlyHolderWithAddressOf() { print_destroyed(this); }
 ~ReturnTester() { print_destroyed(this); }
Exemple #7
0
	~NoConstructor() { print_destroyed(this); }
 ~ExampleMandA() { print_destroyed(this); }