srb2::StaticVec: define value_type

Lets std::back_inserter work on srb2::StaticVec
This commit is contained in:
James R 2023-03-25 02:35:56 -07:00 committed by toaster
parent 56694b2740
commit 4d6b15eca9

View file

@ -22,6 +22,8 @@ class StaticVec
size_t size_ = 0;
public:
using value_type = T;
constexpr StaticVec() {}
StaticVec(const StaticVec& rhs)