From 1ae515a17d91603f23114da6142eab0993a63500 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Fri, 10 Jan 2025 04:09:16 +0200 Subject: [PATCH] Update array_copy_test --- test/array_copy_test.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/array_copy_test.cpp b/test/array_copy_test.cpp index bcb29a4..e94039a 100644 --- a/test/array_copy_test.cpp +++ b/test/array_copy_test.cpp @@ -16,7 +16,7 @@ template void test1() template void test2() { - boost::array a1 = {{}}; + boost::array a1 = {}; boost::array a2; a2 = a1; @@ -52,7 +52,7 @@ int main() test1(); test1(); - // test2(); + test2(); test2(); test2();