We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
False
if i include <X11/Xlib.h> before format.h, compile will complain:
<X11/Xlib.h>
format.h
../../src/contrib/fmt/format.h:1209:8: error: expected identifier before numeric constant struct False { enum { value = 0 }; };
but if i exchange the include order, everything will be fine.
it seems that <X11/Xlib.h> has defined False as value 0.
is name False too common to be a type identifier in header file.
The text was updated successfully, but these errors were encountered:
@zhaohuaxishi , can you check the False is a macro in <X11/Xlib.h> or not?
Sorry, something went wrong.
False -> FalseType (#483)
fbc8ea8
Fixed in fbc8ea8, thanks for reporting!
No branches or pull requests
if i include
<X11/Xlib.h>
beforeformat.h
, compile will complain:but if i exchange the include order, everything will be fine.
it seems that
<X11/Xlib.h>
has definedFalse
as value 0.is name
False
too common to be a type identifier in header file.The text was updated successfully, but these errors were encountered: