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

added possibility to have '.' and '-' in alarm names

parent 498ac50a
No related branches found
No related tags found
No related merge requests found
......@@ -231,7 +231,7 @@ struct alarm_parse : public grammar<alarm_parse>
= alnum_p | '.' | '_' | '-' | '+' //any alpha numeric char plus '.', '_', '-', '+'
;
symbol_attr_name
= alnum_p | '_' //any alpha numeric char plus '_'
= alnum_p | '.' | '_' | '-' //any alpha numeric char plus '_'
;
name
= (+symbol) >> '/' >> (+symbol)
......
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