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