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 Skeleton.H is generated wrongly in 2.8 (not so in 2.6a):
void visit"Integer"("Integer" x); void visit"Char"("Char" x); void visit"Double"("Double" x); void visit"String"("String" x); void visit"Ident"("Ident" x);
should be
void visitInteger(Integer x); void visitChar(Char x); void visitDouble(Double x); void visitString(String x); void visitIdent(Ident x);
DC
The text was updated successfully, but these errors were encountered:
Compile C++ skeleton during system tests [issue #164]
45f737f
e95b314
Thanks for reporting. I think I fixed this particular problem but uncovered many more in the process 😞
Sorry, something went wrong.
gdetrez
No branches or pull requests
The Skeleton.H is generated wrongly in 2.8 (not so in 2.6a):
void visit"Integer"("Integer" x);
void visit"Char"("Char" x);
void visit"Double"("Double" x);
void visit"String"("String" x);
void visit"Ident"("Ident" x);
should be
void visitInteger(Integer x);
void visitChar(Char x);
void visitDouble(Double x);
void visitString(String x);
void visitIdent(Ident x);
DC
The text was updated successfully, but these errors were encountered: