You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// check if bracket expression was not properly parsed
172
+
if (this->getRegexFilePattern().find('{') != std::string::npos || this->getRegexFilePattern().find('}') != std::string::npos) {
173
+
auto start = this->getRegexFilePattern().find('{');
174
+
auto end = this->getRegexFilePattern().find('}');
175
+
auto length = end - start;
176
+
throwstd::invalid_argument("Invalid pattern found in bracket expressions in filepattern: \"" + this->getRegexFilePattern().substr(start, length+1) + "\"");
0 commit comments