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

Fix parsing of .quality, .alarm, .normal properties

parent ab5a5092
Branches master
Tags 1.0.6
No related merge requests found
......@@ -191,7 +191,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 | '_' | '.') - str_p(".normal") - str_p(".alarm") - str_p(".quality") //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