From d78e3b050e6ecd8fd46c40bd5309464bbd0c1721 Mon Sep 17 00:00:00 2001 From: Lukas Tenbrink Date: Mon, 13 Oct 2025 12:44:17 +0200 Subject: [PATCH] Make `LocalVector` -> `Span` conversion function explicit. --- core/local_vector.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/local_vector.h b/core/local_vector.h index 9c45ee9fe18..bfeb19d2e70 100644 --- a/core/local_vector.h +++ b/core/local_vector.h @@ -295,7 +295,7 @@ public: } } - LocalVector(const Span &p_from) { + explicit LocalVector(const Span &p_from) { resize(p_from.size()); for (U i = 0; i < count; i++) { data[i] = p_from[i];