From a689e107c316a0cbf0850fbd38fcf2e0f2b0cf55 Mon Sep 17 00:00:00 2001 From: FantasqueX Date: Fri, 20 Sep 2024 00:05:26 +0800 Subject: [PATCH] Replace non-ascii characters to fix MSVC warning --- zbuild.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zbuild.h b/zbuild.h index 4e9d4035..12e88bd2 100644 --- a/zbuild.h +++ b/zbuild.h @@ -275,8 +275,8 @@ /* * __asan_loadN() and __asan_storeN() calls are inserted by compilers in order to check memory accesses. * They can be called manually too, with the following caveats: - * gcc says: "warning: implicit declaration of function ‘...’" - * g++ says: "error: new declaration ‘...’ ambiguates built-in declaration ‘...’" + * gcc says: "warning: implicit declaration of function '...'" + * g++ says: "error: new declaration '...' ambiguates built-in declaration '...'" * Accommodate both. */ #ifdef Z_ADDRESS_SANITIZER -- 2.47.2