Skip to content

Commit

Permalink
fix an unrelated warning
Browse files Browse the repository at this point in the history
That is not correct C++ code to copy uninitialized values.
  • Loading branch information
lrineau committed Feb 3, 2025
1 parent 45da368 commit 094507c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion STL_Extension/test/STL_Extension/test_namespaces.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

int main()
{
CGAL::cpp0x::array<int, 3> arr;
CGAL::cpp0x::array<int, 3> arr{1, 2, 3};
std::array<int, 3> arr2;

CGAL::cpp0x::tuple<double, int> tuple;
Expand Down

0 comments on commit 094507c

Please sign in to comment.