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(); } /**