madler / zlib

A massively spiffy yet delicately unobtrusive compression library.
http://zlib.net/
Other
5.46k stars 2.41k forks source link

Can we clean clang compiler warning ”reserve-id-macro"? #961

Open Lwisce opened 3 months ago

Lwisce commented 3 months ago

When compile with clang, some macro like "_ZLIBIOAPI64_H" will cause ”reserve-id-macro" warning. Can we consider remove the under scar before the macro to avoid it? For example:

- #ifndef _ZLIBIOAPI64_H - #define _ZLIBIOAPI64_H + #ifndef ZLIBIOAPI64_H + #define ZLIBIOAPI64_H