Skip to content
Snippets Groups Projects
Commit 5e8aea13 authored by Stéphane Del Pino's avatar Stéphane Del Pino
Browse files

Add potentially ignored characters while parsing `type_expression`

parent a24be6df
No related branches found
No related tags found
1 merge request!37Feature/language
...@@ -75,7 +75,7 @@ struct type_specifier : sor< vector_type, basic_type >{}; ...@@ -75,7 +75,7 @@ struct type_specifier : sor< vector_type, basic_type >{};
struct TYPE_SPECIFIER : seq< type_specifier, ignored >{}; struct TYPE_SPECIFIER : seq< type_specifier, ignored >{};
struct type_expression : list_must< TYPE_SPECIFIER, seq< one< '*' > > >{}; struct type_expression : list_must< TYPE_SPECIFIER, seq< one< '*' >, ignored > >{};
struct TYPE_EXPRESSION : seq< type_expression, ignored >{}; struct TYPE_EXPRESSION : seq< type_expression, ignored >{};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment