aboutsummaryrefslogtreecommitdiffstats
path: root/libtests/cxx11.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libtests/cxx11.cc')
-rw-r--r--libtests/cxx11.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libtests/cxx11.cc b/libtests/cxx11.cc
index 20a5134f..bc14b5c0 100644
--- a/libtests/cxx11.cc
+++ b/libtests/cxx11.cc
@@ -344,7 +344,7 @@ void do_regex()
s.clear();
for (std::sregex_iterator iter = m1; iter != m2; ++iter)
{
- std::smatch const& match2 = *iter;
+ std::smatch const& match2 = *iter;
s += match2[0].str() + "|";
}
assert("234|9453|423|" == s);