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