From 629bb9e57683e733294d3be4ea32b40d5b87c87b Mon Sep 17 00:00:00 2001 From: status102 <102887808+status102@users.noreply.github.com> Date: Sat, 29 Nov 2025 12:24:38 +0800 Subject: [PATCH] chore: format --- src/MaaCore/Utils/ExceptionStacktrace.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/MaaCore/Utils/ExceptionStacktrace.hpp b/src/MaaCore/Utils/ExceptionStacktrace.hpp index 5fa077f461..89af089189 100644 --- a/src/MaaCore/Utils/ExceptionStacktrace.hpp +++ b/src/MaaCore/Utils/ExceptionStacktrace.hpp @@ -52,7 +52,7 @@ public: const struct mach_header* header = _dyld_get_image_header(0); return reinterpret_cast(header); #else // Linux and other Unix-like systems - // 通过当前函数地址查找所属模块基址 + // 通过当前函数地址查找所属模块基址 Dl_info info; if (dladdr(reinterpret_cast(&get_base_address), &info)) { return reinterpret_cast(info.dli_fbase);