From fe597a5a4604d224ad46e63b82d0943a32cea301 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 0ab8964..8e6931a 100644 --- a/util/limbo_utility.cpp +++ b/util/limbo_utility.cpp @@ -516,6 +516,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;