Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions include/scl/math/array.h
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -316,7 +316,7 @@ class Array final {
requires Invertible<T>
{
Array<T, N> p = *this;
return p.Invert();
return p.invert();
}

/**
Expand Down