From c9a0ffd70ad55142038ef645524a760e9398b7d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Wed, 20 Oct 2021 15:24:29 +0200 Subject: [PATCH] GL: hellooo GCC 4.8 great to see you being still the same!! --- src/Magnum/GL/Test/MeshGLTest.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Magnum/GL/Test/MeshGLTest.cpp b/src/Magnum/GL/Test/MeshGLTest.cpp index 6aad7fb98..50e05ba72 100644 --- a/src/Magnum/GL/Test/MeshGLTest.cpp +++ b/src/Magnum/GL/Test/MeshGLTest.cpp @@ -4631,7 +4631,7 @@ void MeshGLTest::multiDrawInstanced() { { 1.0f/3.0f, data.values[1]}, }; const Float instanceData[]{ - {}, /* initial offset */ + 0, /* initial offset */ -1.0f/3.0f, 1.0f/3.0f }; @@ -4712,7 +4712,7 @@ void MeshGLTest::multiDrawInstancedSparseArrays() { { 1.0f/3.0f, data.values[1]}, }; const Float instanceData[]{ - {}, /* initial offset */ + 0, /* initial offset */ -1.0f/3.0f, 1.0f/3.0f }; @@ -4812,7 +4812,7 @@ template void MeshGLTest::multiDrawInstancedIndexed() { { 1.0f/3.0f, data.values[1]}, }; const Float instanceData[]{ - {}, /* initial offset */ + 0, /* initial offset */ -1.0f/3.0f, 1.0f/3.0f }; @@ -4903,7 +4903,7 @@ template void MeshGLTest::multiDrawInstancedIndexedSparseArrays() { { 1.0f/3.0f, data.values[1]}, }; const Float instanceData[]{ - {}, /* initial offset */ + 0, /* initial offset */ -1.0f/3.0f, 1.0f/3.0f };