summaryrefslogtreecommitdiffstats
path: root/servers/rendering/storage/variant_converters.h
diff options
context:
space:
mode:
Diffstat (limited to 'servers/rendering/storage/variant_converters.h')
-rw-r--r--servers/rendering/storage/variant_converters.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/servers/rendering/storage/variant_converters.h b/servers/rendering/storage/variant_converters.h
index 6e3c07237e..7dbdb0f517 100644
--- a/servers/rendering/storage/variant_converters.h
+++ b/servers/rendering/storage/variant_converters.h
@@ -242,10 +242,10 @@ inline bool is_convertible_array(Variant::Type type) {
type == Variant::PACKED_COLOR_ARRAY;
}
-template <class, class = void>
+template <typename, typename = void>
inline constexpr bool is_vector_type_v = false;
-template <class T>
+template <typename T>
inline constexpr bool is_vector_type_v<T, std::void_t<decltype(T::AXIS_COUNT)>> = true;
template <typename T, typename P>