From 667d5a05a03dadcb5681a7d38895b7757d1b58db Mon Sep 17 00:00:00 2001 From: Leonid Fedorov Date: Fri, 4 Apr 2025 14:57:21 +0000 Subject: [PATCH] chore(compilation): gcc warning for array init --- tests/counting_allocator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/counting_allocator.cpp b/tests/counting_allocator.cpp index 6a7bdfbfc..4a2a76a36 100644 --- a/tests/counting_allocator.cpp +++ b/tests/counting_allocator.cpp @@ -32,7 +32,7 @@ struct TestClass { int value[1024]; - TestClass(int val) : value(val) + TestClass(int val) : value{val} { } };