1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-29 08:21:15 +03:00

chore(compilation): gcc warning for array init

This commit is contained in:
Leonid Fedorov
2025-04-04 14:57:21 +00:00
committed by Aleksei Bukhalov
parent fe0e67e8a1
commit 667d5a05a0

View File

@ -32,7 +32,7 @@ struct TestClass
{
int value[1024];
TestClass(int val) : value(val)
TestClass(int val) : value{val}
{
}
};