Skip to content

Commit

Permalink
RTTI一处代码整理
Browse files Browse the repository at this point in the history
  • Loading branch information
lailongwei committed Sep 18, 2024
1 parent 88aea46 commit 13dbb45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llbc/src/common/RTTI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const char *__LLBC_GetCompName(const char *mangledCompName)

int status;
size_t len = sizeof(libTls->commonTls.rtti);
abi::__cxa_demangle(mangledCompName, libTls->commonTls.rtti, &len, &status);
::abi::__cxa_demangle(mangledCompName, libTls->commonTls.rtti, &len, &status);
if (UNLIKELY(status != 0))
return mangledCompName;

Expand Down

0 comments on commit 13dbb45

Please sign in to comment.