On Thu, Apr 13, 2023 at 09:37:06AM +0900, Michael Paquier wrote: > > If you don't insist on calling parse(NONE), the only change is to remove > > the empty #else, which was my original patch. > > Removing the empty else has as problem to create an empty if block, > which could be itself a cause of warnings?
I doubt it - in the !HAVE_LIBZ case, it's currently an "if" statement with nothing but a comment, which isn't a problem. I think the only issue with an empty "if" is when you have no braces, like: if (...) #if ... something; #endif // problem here // -- Justin