Skip to content

Commit

Permalink
Replace non-ascii characters to fix MSVC warning
Browse files Browse the repository at this point in the history
  • Loading branch information
FantasqueX authored and Dead2 committed Sep 20, 2024
1 parent 8e19f15 commit a689e10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions zbuild.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a689e10

Please sign in to comment.