added value_type using to collection.hpp

This commit is contained in:
Sascha Kühl 2025-07-03 16:20:46 +02:00
parent 7a6de4053a
commit 9c7628b6cb
1 changed files with 1 additions and 0 deletions

View File

@ -8,6 +8,7 @@ namespace matador::object {
template < class Type > template < class Type >
class collection { class collection {
public: public:
using value_type = Type;
private: private:
std::vector<Type> data_; std::vector<Type> data_;