From 2d9d4eb84b386204225f1129a91799284a891fc7 Mon Sep 17 00:00:00 2001 From: Rico Tzschichholz Date: Mon, 17 Apr 2023 15:56:12 +0200 Subject: gee: Fix type-arguments in cast --- gee/collection.vala | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gee/collection.vala b/gee/collection.vala index 84162232a..eeaf1cd6d 100644 --- a/gee/collection.vala +++ b/gee/collection.vala @@ -108,17 +108,17 @@ public abstract class Vala.Collection : Iterable { } else if (t == typeof (uint)) { return (G[]) to_uint_array ((Collection) this); } else if (t == typeof (int64)) { - return (G[]) to_int64_array ((Collection) this); + return (G[]) to_int64_array ((Collection) this); } else if (t == typeof (uint64)) { - return (G[]) to_uint64_array ((Collection) this); + return (G[]) to_uint64_array ((Collection) this); } else if (t == typeof (long)) { return (G[]) to_long_array ((Collection) this); } else if (t == typeof (ulong)) { return (G[]) to_ulong_array ((Collection) this); } else if (t == typeof (float)) { - return (G[]) to_float_array ((Collection) this); + return (G[]) to_float_array ((Collection) this); } else if (t == typeof (double)) { - return (G[]) to_double_array ((Collection) this); + return (G[]) to_double_array ((Collection) this); } else if (t.is_enum () || t.is_flags ()) { return (G[]) to_int_array ((Collection) this); } else { -- cgit v1.2.1