示例#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); }