Skip to content
Snippets Groups Projects
Commit d0c1763c authored by Graziano Scalamera's avatar Graziano Scalamera
Browse files

Fix parsing dot in attribute name

parent e4004294
No related branches found
No related tags found
No related merge requests found
......@@ -198,7 +198,7 @@ struct formula_grammar : public grammar<formula_grammar>
= (alnum_p | '.' | '_' | '-' | '+') //any alpha numeric char plus '.', '_', '-'
;
symbol_attr
= (alnum_p | '_' ) //any alpha numeric char plus '_' for attribute names
= (alnum_p | '_' | '.') //any alpha numeric char plus '_', '.' for attribute names
;
//------------------------------ALARM NAME--------------------------------------
name
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment