Re: g++ version 6.2.0 can't compile 4.8 code
Jens Kallup <[email protected]>
| Newsgroups | gmane.comp.parsers.spirit.general |
|---|---|
| Message-ID | <[email protected]> |
Am 28.11.2016 um 12:09 schrieb llonesmiz:
> llonesmiz wrote
>> [...]Sadly the error does not point where in your code is the problem[...]
> I was actually wrong, the error does in fact point to the line where
> "symbol_def_expr" begins.
Hi,
thank You for your helping hand!
Just for clearify, here the code, that make all possible:
Jens
symbol_def_if %= symbol_def_if_inner;
symbol_def_if_inner %=
symbol_if > (expression)
>> *(
(symbol_alpha -(skipp_keywords) > '=' > symbol_expr ) |
(symbol_def_stmts)
>> *(symbol_def_if)
)
>> *(
(symbol_else
>> *(
(symbol_alpha -(skipp_keywords) > '=' > symbol_expr ) |
(symbol_def_stmts)
>> *(symbol_def_if)
)))
> symbol_endif
;
------------------------------------------------------------------------------