re PR libstdc++/63353 (libstdc++-v3/src/c++11/ios.cc:232: possible typo ?)

PR libstdc++/63353
	* src/c++11/ios.cc (ios_base::_M_swap): Fix typo.

From-SVN: r215549
This commit is contained in:
Jonathan Wakely 2014-09-24 10:40:10 +01:00 committed by Jonathan Wakely
parent acf816a3ac
commit 8d6b3c1632
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2014-09-24 Jonathan Wakely <jwakely@redhat.com>
PR libstdc++/63353
* src/c++11/ios.cc (ios_base::_M_swap): Fix typo.
2014-09-23 Jonathan Wakely <jwakely@redhat.com>
* config/abi/pre/gnu.ver: Adjust basic_ostream exports.

View File

@ -229,7 +229,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
std::swap(_M_local_word, __rhs._M_local_word); // array swap
else
{
if (!__lhs_local && !__lhs_local)
if (!__lhs_local && !__rhs_local)
std::swap(_M_word, __rhs._M_word);
else
{