* testsuite/util/testsuite_allocator.h (operator==): Fix recursion.

From-SVN: r217090
This commit is contained in:
Jonathan Wakely 2014-11-04 16:54:49 +00:00 committed by Jonathan Wakely
parent bf42f4fd59
commit 2acb709654
2 changed files with 3 additions and 1 deletions

View File

@ -23,6 +23,8 @@
* include/parallel/numeric.h: Do not use default arguments in function
template redeclarations (definitions).
* testsuite/util/testsuite_allocator.h (operator==): Fix recursion.
2014-11-03 Paolo Carlini <paolo.carlini@oracle.com>
* include/parallel/algo.h: Do not use default arguments in function

View File

@ -209,7 +209,7 @@ namespace __gnu_test
{
const Alloc1& alloc1 = lhs;
const Alloc2& alloc2 = rhs;
return lhs == rhs;
return alloc1 == alloc2;
}
template<class T1, class Alloc1, class T2, class Alloc2>