From 0be5c567c9b3aaa970c487bcc32e0c12654f48cb Mon Sep 17 00:00:00 2001 From: felix Date: Thu, 29 Sep 2022 23:32:44 +0800 Subject: [PATCH] FIX: C++ std::tuple constexpr initial list on old compiler [cont 1] --- test/unit/utglTF2ImportExport.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/unit/utglTF2ImportExport.cpp b/test/unit/utglTF2ImportExport.cpp index 399bbdc4f..ef3fc4137 100644 --- a/test/unit/utglTF2ImportExport.cpp +++ b/test/unit/utglTF2ImportExport.cpp @@ -754,9 +754,9 @@ TEST_F(utglTF2ImportExport, wrongTypes) { using tup_T = std::tuple; std::vector wrongTypes = { #ifdef __cpp_lib_constexpr_tuple - #define TUPLE(x) {x} + #define TUPLE(x, y, z, w) {x, y, z, w} #else - #define TUPLE(x) tup_T(x) + #define TUPLE(x, y, z, w) tup_T(x, y, z, w) #endif TUPLE("/glTF2/wrongTypes/badArray.gltf", "array", "primitives", "meshes[0]"), TUPLE("/glTF2/wrongTypes/badString.gltf", "string", "name", "scenes[0]"),