Make libstdc++ debug mode test valid for C++98
authorJonathan Wakely <jwakely@redhat.com>
Mon, 1 Aug 2016 12:18:13 +0000 (13:18 +0100)
committerJonathan Wakely <redi@gcc.gnu.org>
Mon, 1 Aug 2016 12:18:13 +0000 (13:18 +0100)
* testsuite/25_algorithms/lower_bound/debug/irreflexive.cc: Use
C++98-compatible initialization for array.

From-SVN: r238944

libstdc++-v3/ChangeLog
libstdc++-v3/testsuite/25_algorithms/lower_bound/debug/irreflexive.cc

index 1e44841c6f942644c67290b476a2559553837a04..318b87ead330f103d5e826f4dfdbe73624e99829 100644 (file)
@@ -1,5 +1,8 @@
 2016-08-01  Jonathan Wakely  <jwakely@redhat.com>
 
+       * testsuite/25_algorithms/lower_bound/debug/irreflexive.cc: Use
+       C++98-compatible initialization for array.
+
        * testsuite/20_util/shared_ptr/assign/auto_ptr_rvalue.cc: Remove
        unused header and variable from compile-only test.
        * testsuite/20_util/shared_ptr/assign/unique_ptr_rvalue.cc: Likewise.
index f22452ecc8a2b97b39a2cd9edb436a3ec9fc0ce3..1554df0d97f6b43f2a6d24e284709ad61bfa8ffd 100644 (file)
@@ -42,6 +42,6 @@ struct A_int_comparer
 
 void test01()
 {
-  A as[] { 0, 1, 2, 3 };
+  A as[] { 0, 1, 2, 3 };
   std::lower_bound(as, as + 4, 1, A_int_comparer());
 }