From aa7d8ea50e55bc31bd6616c8f3ca8b4a29938033 Mon Sep 17 00:00:00 2001 From: "Wilson E. Alvarez" Date: Sun, 5 May 2024 08:47:27 -0400 Subject: [PATCH] Fix GCC warning for unhandled 'PACKED_VECTOR4_ARRAY' in switch --- util/limbo_utility.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/util/limbo_utility.cpp b/util/limbo_utility.cpp index e13c336..9d2a82b 100644 --- a/util/limbo_utility.cpp +++ b/util/limbo_utility.cpp @@ -515,6 +515,7 @@ PackedInt32Array LimboUtility::get_property_hints_allowed_for_type(Variant::Type case Variant::Type::PACKED_STRING_ARRAY: case Variant::Type::PACKED_VECTOR2_ARRAY: case Variant::Type::PACKED_VECTOR3_ARRAY: + case Variant::Type::PACKED_VECTOR4_ARRAY: case Variant::Type::PACKED_COLOR_ARRAY: case Variant::Type::VARIANT_MAX: { } break;