When I generate my parser with bison, I obtain this warning:
warning: stray `@'
But that is because I have some legal Objective-C code containing @
, for instance this is one of the rules having the warning:
file : axiom production_rule_list { NSLog(@"file"); }
;
Is there any risk to use @
in the code? If not, how to tell bison that it is a legitimate use of @
?
Thanks in advance.
.ym
extension. – Nikolai Ruhe