From 5258506e12248a576c22caf419825e2d42c96b01 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 Due to upstream change: https://github.com/godotengine/godot/commit/f9b488508ccc294db03d427c15c182864fae74de --- 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;