From 094507cfaa9f0bf373ca39d7360f52553236c5fd Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Mon, 3 Feb 2025 17:25:31 +0100 Subject: [PATCH] fix an unrelated warning That is not correct C++ code to copy uninitialized values. --- STL_Extension/test/STL_Extension/test_namespaces.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/STL_Extension/test/STL_Extension/test_namespaces.cpp b/STL_Extension/test/STL_Extension/test_namespaces.cpp index 63a9971c5766..f7293e8a7c4c 100644 --- a/STL_Extension/test/STL_Extension/test_namespaces.cpp +++ b/STL_Extension/test/STL_Extension/test_namespaces.cpp @@ -13,7 +13,7 @@ int main() { - CGAL::cpp0x::array arr; + CGAL::cpp0x::array arr{1, 2, 3}; std::array arr2; CGAL::cpp0x::tuple tuple;