Commit 468146e0 by Tim Shen Committed by Tim Shen

regex_executor.tcc (_DFSExecutor<>::_M_dfs): Fix wrong backup variable initialization.

2013-10-03  Tim Shen  <timshen91@gmail.com>

	* include/bits/regex_executor.tcc (_DFSExecutor<>::_M_dfs): Fix wrong
	backup variable initialization.

From-SVN: r203190
parent d358f348
2013-10-03 Tim Shen <timshen91@gmail.com>
* include/bits/regex_executor.tcc (_DFSExecutor<>::_M_dfs): Fix wrong
backup variable initialization.
2013-10-03 John Woolverton <jdwoolverton@gmail.com>
PR libstdc++/58604
......
......@@ -66,7 +66,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
if (!_M_cur_results[__state._M_subexpr].matched
|| _M_cur_results[__state._M_subexpr].first != __current)
{
auto __back = __current;
auto __back = _M_cur_results[__state._M_subexpr].first;
_M_cur_results[__state._M_subexpr].first = __current;
__ret = _M_dfs(__state._M_next);
_M_cur_results[__state._M_subexpr].first = __back;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment