]> git.tdb.fi Git - libs/core.git/blobdiff - source/strings/regex.cpp
Use default member initializers and constructor delegation
[libs/core.git] / source / strings / regex.cpp
index 832cd85b110ac81d245af918375ddd24256727ef..915d33556f17cdd8d4f3a23c48e9a3f5b8343054 100644 (file)
@@ -56,7 +56,6 @@ string bad_regex::make_where(const string &e, const string::const_iterator &i)
 
 Regex::Regex(const string &expr)
 {
-       n_groups = 0;
        auto iter = expr.begin();
        code = compile(expr, iter, n_groups, false);
        ++n_groups;
@@ -130,7 +129,8 @@ Regex::Code Regex::compile(const string &expr, string::const_iterator &iter, uns
 
                        Count repeat_min = 1;
                        Count repeat_max = 1;
-                       parse_repeat(expr, i, repeat_min, repeat_max);
+                       if(i!=end)
+                               parse_repeat(expr, i, repeat_min, repeat_max);
 
                        for(unsigned j=0; j<repeat_min; ++j)
                                result += atom;