~eda-qa/leaflang/misc

« back to all changes in this revision

Viewing changes to src/parser/regex_patterns.hpp

  • Committer: edA-qa mort-ora-y
  • Date: 2017-07-29 15:17:50 UTC
  • Revision ID: eda-qa@disemia.com-20170729151750-zg5z4lpm5o1ns612
convert to new on

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
        const boost::regex re_base_number( "0([xbo])([0-9a-fA-F_]+(\\.[0-9a-fA-F_]+)?)" );
31
31
        const boost::regex re_bool( "true|false" EXCLUDE_SYMBOL_REGEX_CHAR );
32
32
        
33
 
        const boost::regex re_special( "(new|on|xon)" EXCLUDE_SYMBOL_REGEX_CHAR );
 
33
        const boost::regex re_special( "(new|on)" EXCLUDE_SYMBOL_REGEX_CHAR );
34
34
}