* testsuite/util/testsuite_allocator.h (operator==): Fix recursion.
From-SVN: r217090
This commit is contained in:
parent
bf42f4fd59
commit
2acb709654
@ -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
|
||||
|
@ -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>
|
||||
|
Loading…
x
Reference in New Issue
Block a user