From d0d70a2f27933d9db2a351d8f10dec0a6f836c56 Mon Sep 17 00:00:00 2001 From: obdev Date: Thu, 13 Apr 2023 15:41:18 +0000 Subject: [PATCH] fix ut compile error --- deps/oblib/unittest/lib/hash/test_simpleallocer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deps/oblib/unittest/lib/hash/test_simpleallocer.cpp b/deps/oblib/unittest/lib/hash/test_simpleallocer.cpp index 564b2c36cd..7905d95360 100644 --- a/deps/oblib/unittest/lib/hash/test_simpleallocer.cpp +++ b/deps/oblib/unittest/lib/hash/test_simpleallocer.cpp @@ -32,7 +32,7 @@ class MyAllocator : public ObIAllocator public: void *alloc(const int64_t size) { - void *ptr = ob_malloc(size); + void *ptr = ob_malloc(size, "test"); ptr_set.insert(ptr); return ptr; }