Skip to content

Commit a689e10

Browse files
FantasqueXDead2
authored andcommitted
Replace non-ascii characters to fix MSVC warning
1 parent 8e19f15 commit a689e10

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

zbuild.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -275,8 +275,8 @@
275275
/*
276276
* __asan_loadN() and __asan_storeN() calls are inserted by compilers in order to check memory accesses.
277277
* They can be called manually too, with the following caveats:
278-
* gcc says: "warning: implicit declaration of function ..."
279-
* g++ says: "error: new declaration ... ambiguates built-in declaration ..."
278+
* gcc says: "warning: implicit declaration of function '...'"
279+
* g++ says: "error: new declaration '...' ambiguates built-in declaration '...'"
280280
* Accommodate both.
281281
*/
282282
#ifdef Z_ADDRESS_SANITIZER

0 commit comments

Comments
 (0)