From 287e06ffefa853b6193bdd0d94c42652f042eaae Mon Sep 17 00:00:00 2001 From: hdvanegasm Date: Mon, 12 May 2025 11:24:17 -0500 Subject: [PATCH] Fix Array::invert() --- include/scl/math/array.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/scl/math/array.h b/include/scl/math/array.h index 00dbbbe..6cbf53f 100644 --- a/include/scl/math/array.h +++ b/include/scl/math/array.h @@ -135,7 +135,7 @@ class Array final { * This function will attempt to construct a \p T element using \p value, and * then fill all slots with this value. */ - explicit Array(int value) : Array(T{value}){}; + explicit Array(int value) : Array(T{value}) {}; /** * @brief Copy construct an Array from another array. @@ -316,7 +316,7 @@ class Array final { requires Invertible { Array p = *this; - return p.Invert(); + return p.invert(); } /**