Skip to content

Commit 59c1e4c

Browse files
authored
Merge pull request #26 from hdvanegasm/fix_invert
Fix `Array::invert()`
2 parents 69ec0e0 + 287e06f commit 59c1e4c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/scl/math/array.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ class Array final {
135135
* This function will attempt to construct a \p T element using \p value, and
136136
* then fill all slots with this value.
137137
*/
138-
explicit Array(int value) : Array(T{value}){};
138+
explicit Array(int value) : Array(T{value}) {};
139139

140140
/**
141141
* @brief Copy construct an Array from another array.
@@ -316,7 +316,7 @@ class Array final {
316316
requires Invertible<T>
317317
{
318318
Array<T, N> p = *this;
319-
return p.Invert();
319+
return p.invert();
320320
}
321321

322322
/**

0 commit comments

Comments
 (0)