diff --git a/Chaos/Service/SeArray.hpp b/Chaos/Service/SeArray.hpp index be4932b..959924f 100644 --- a/Chaos/Service/SeArray.hpp +++ b/Chaos/Service/SeArray.hpp @@ -58,11 +58,6 @@ public: return Storage_.data() + Storage_.size(); } - constexpr size_t Size() const noexcept - { - return Storage_.size(); - } - void Fill(const T & value) { Storage_.fill(value); @@ -73,6 +68,11 @@ public: EraseImpl(); } + static constexpr size_t Size() noexcept + { + return S; + } + private: std::array Storage_;