aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Wakely <jwakely@redhat.com>2020-01-10 15:27:50 +0000
committerJonathan Wakely <redi@gcc.gnu.org>2020-01-10 15:27:50 +0000
commit78f02e8003d1f16b9f7371eac0f39ad734c8b714 (patch)
tree85f55ae45f0387e5aea6852c39665c7be33c60d5
parent7918cb93f6f752cec468f107eb944dc0da61ec6b (diff)
downloadgcc-78f02e8003d1f16b9f7371eac0f39ad734c8b714.zip
gcc-78f02e8003d1f16b9f7371eac0f39ad734c8b714.tar.gz
gcc-78f02e8003d1f16b9f7371eac0f39ad734c8b714.tar.bz2
libstdc++: Fix testcase for C++98 compatibility
* testsuite/25_algorithms/equal/deque_iterators/1.cc: Don't use C++11 initialization syntax. From-SVN: r280117
-rw-r--r--libstdc++-v3/ChangeLog3
-rw-r--r--libstdc++-v3/testsuite/25_algorithms/equal/deque_iterators/1.cc2
2 files changed, 4 insertions, 1 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index d1392c9..3d25ecc 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,5 +1,8 @@
2020-01-10 Jonathan Wakely <jwakely@redhat.com>
+ * testsuite/25_algorithms/equal/deque_iterators/1.cc: Don't use C++11
+ initialization syntax.
+
PR libstdc++/92285
* include/bits/streambuf_iterator.h (istreambuf_iterator): Make type
of base class independent of __cplusplus value.
diff --git a/libstdc++-v3/testsuite/25_algorithms/equal/deque_iterators/1.cc b/libstdc++-v3/testsuite/25_algorithms/equal/deque_iterators/1.cc
index be60db8..82bef05 100644
--- a/libstdc++-v3/testsuite/25_algorithms/equal/deque_iterators/1.cc
+++ b/libstdc++-v3/testsuite/25_algorithms/equal/deque_iterators/1.cc
@@ -104,7 +104,7 @@ void test05()
{
using namespace std;
- int a[] { 0, 1, 2, 3, 4 };
+ int a[] = { 0, 1, 2, 3, 4 };
deque<int, __gnu_cxx::new_allocator<int> > d1(a, a + 5);
deque<int, __gnu_cxx::malloc_allocator<int> > d2(a, a + 5);