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
The following example crashes cppfront (Program received signal SIGSEGV, Segmentation fault.):
Program received signal SIGSEGV, Segmentation fault.
enemy_home_rank: uint64 == home_rank.flip();
Cppfront was compiled with g++ cppfront.cpp -g -std=c++20 -o cppfront and clang++ cppfront.cpp -g -std=c++20 -o cppfront.
g++ cppfront.cpp -g -std=c++20 -o cppfront
clang++ cppfront.cpp -g -std=c++20 -o cppfront
The problem does not happen when it's a normal assignment or not UFCS, i.e., the following works:
enemy_home_rank: uint64 = home_rank.flip(); enemy_home_rank: uint64 == flip(home_rank);
The text was updated successfully, but these errors were encountered:
This is #509, and fixed by #506.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
The following example crashes cppfront (
Program received signal SIGSEGV, Segmentation fault.
):Cppfront was compiled with
g++ cppfront.cpp -g -std=c++20 -o cppfront
andclang++ cppfront.cpp -g -std=c++20 -o cppfront
.The problem does not happen when it's a normal assignment or not UFCS, i.e., the following works:
The text was updated successfully, but these errors were encountered: