From eb753c56b865c342ebd387191e4e965b0c049ef1 Mon Sep 17 00:00:00 2001 From: ValKmjolnir Date: Wed, 6 Dec 2023 20:38:20 +0800 Subject: [PATCH] :bug: trigger CI --- module/fib.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/module/fib.cpp b/module/fib.cpp index c8d6967..d3b99ba 100644 --- a/module/fib.cpp +++ b/module/fib.cpp @@ -48,9 +48,10 @@ struct ghost_obj { }; void ghost_for_test_destructor(void* ptr) { + return; std::cout << "ghost_for_test::destructor (0x"; std::cout << std::hex << reinterpret_cast(ptr) << std::dec << ") {\n"; - // delete static_cast(ptr); + delete static_cast(ptr); std::cout << " delete 0x" << std::hex; std::cout << reinterpret_cast(ptr) << std::dec << ";\n"; std::cout << "}\n";