Commit 3da2f26c by Jonathan Wakely Committed by Jonathan Wakely

Add missing noexcept on definition to match declaration

	* include/bits/regex.tcc (regex_iterator::operator==): Add missing
	noexcept.

From-SVN: r262146
parent 4723f0fb
2018-06-26 Jonathan Wakely <jwakely@redhat.com>
* include/bits/regex.tcc (regex_iterator::operator==): Add missing
noexcept.
2018-06-25 Jonathan Wakely <jwakely@redhat.com>
PR libstdc++/86112
......
......@@ -500,7 +500,7 @@ namespace __detail
typename _Rx_traits>
bool
regex_iterator<_Bi_iter, _Ch_type, _Rx_traits>::
operator==(const regex_iterator& __rhs) const
operator==(const regex_iterator& __rhs) const noexcept
{
if (_M_pregex == nullptr && __rhs._M_pregex == nullptr)
return true;
......
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