# | Line 67 | Line 67 | Matcher& Matcher::operator()(const strin | |
---|---|---|
67 | pcre_free(this->expression); | |
68 | } | |
69 | ||
70 | < | this->expression = pcre_compile(expression.c_str(), PCRE_MULTILINE, NULL, |
71 | < | NULL, NULL); |
70 | > | const char* error; |
71 | > | int offset; |
72 | > | |
73 | > | this->expression = pcre_compile(expression.c_str(), PCRE_MULTILINE, &error, |
74 | > | &offset, NULL); |
75 | ||
76 | return *this; | |
77 | } |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |