* testsuite/util/testsuite_allocator.h (operator==): Fix recursion.
authorJonathan Wakely <jwakely@redhat.com>
Tue, 4 Nov 2014 16:54:49 +0000 (16:54 +0000)
committerJonathan Wakely <redi@gcc.gnu.org>
Tue, 4 Nov 2014 16:54:49 +0000 (16:54 +0000)
From-SVN: r217090

libstdc++-v3/ChangeLog
libstdc++-v3/testsuite/util/testsuite_allocator.h

index 8cb7675f6a5322ad03c15a9e2f03469b03172638..e11a9a752e350ffb25442834d9174784fecfdb89 100644 (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
index 8edc0a5ad784f0c1ddf90f4bb8f7285b5c8e0745..dec8d1a965d1166c0c07251ab62dd2b5e927a182 100644 (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>