コード例 #1
0
ファイル: test_smart_ptr.cpp プロジェクト: gedare/gem5
 ~MyObject4() {
     print_destroyed(this);
 }
コード例 #2
0
ファイル: test_smart_ptr.cpp プロジェクト: gedare/gem5
 ~B() { print_destroyed(this); }
コード例 #3
0
ファイル: test_smart_ptr.cpp プロジェクト: gedare/gem5
 virtual ~MyObject3() {
     print_destroyed(this);
 }
コード例 #4
0
ファイル: test_buffers.cpp プロジェクト: aldanor/pybind11
 ~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); }
コード例 #8
0
 ~ExampleMandA() { print_destroyed(this); }