Skip to content
New issue

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

Skeleton.H has wrongly generated quotes around method name parts and parameters in cpp mode #164

Closed
dcavar opened this issue Feb 2, 2016 · 1 comment
Assignees
Labels
Milestone

Comments

@dcavar
Copy link

dcavar commented Feb 2, 2016

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

@gdetrez gdetrez self-assigned this Feb 3, 2016
@gdetrez gdetrez closed this as completed in e95b314 Feb 4, 2016
@gdetrez
Copy link
Contributor

gdetrez commented Feb 4, 2016

Thanks for reporting. I think I fixed this particular problem but uncovered many more in the process 😞

@andreasabel andreasabel added the C++ label Nov 4, 2018
@andreasabel andreasabel added this to the 2.8.2 milestone Nov 4, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants