diff --git a/Source/utils/autofill_array.h b/Source/utils/autofill_array.h index 4dc55aa2e..dea6b6a47 100644 --- a/Source/utils/autofill_array.h +++ b/Source/utils/autofill_array.h @@ -4,9 +4,8 @@ namespace devilution { -template -struct AutofillArray: public std::array -{ +template +struct AutofillArray : public std::array { using std::array::array; explicit AutofillArray(T x) @@ -15,13 +14,13 @@ struct AutofillArray: public std::array } AutofillArray() - : AutofillArray(0) + : AutofillArray(0) { } - template - AutofillArray(const T &x, const Xs &... xs) - : std::array({ x, static_cast(xs)... }) + template + AutofillArray(const T &x, const Xs &...xs) + : std::array({ x, static_cast(xs)... }) { } };