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
#include <stdbool.h> bool *board; void setFieldVal(coord pos, bool val) { *(board + pos.y*sizeX + pos.x) = val; /// <-- that part lost }
Error
func setFieldVal(pos coord, val bool) { } // Error (BinaryOperator): 114: int
The text was updated successfully, but these errors were encountered:
Suppose, bool for stdbool created like Go bool, but not like signed int and this is mistake.
bool
stdbool
signed int
Sorry, something went wrong.
Add support type _Bool. Fixes #442 and #428 (#445)
c7cca34
No branches or pull requests
Error
The text was updated successfully, but these errors were encountered: