So my question is quite simple, in my lexer class (extending lex::lexer<T>
), I have the following;
this->self.add
...
("&&", AND_AND)
("||", OR_OR)
...
Inside my constructor, which compiles just fine, but triggers a SegFault on runtime. The issue is quite obvious |
is the 'or' operator in the regex system, how do I get past this issue?