insert query builder has many to many progress
This commit is contained in:
@@ -8,9 +8,9 @@ namespace matador::object {
|
||||
template < class Type >
|
||||
class collection {
|
||||
public:
|
||||
using value_type = Type;
|
||||
using iterator = typename std::vector<value_type>::iterator;
|
||||
using const_iterator = typename std::vector<value_type>::const_iterator;
|
||||
using value_type = typename collection_proxy<Type>::value_type;
|
||||
using iterator = typename collection_proxy<Type>::iterator;
|
||||
using const_iterator = typename collection_proxy<Type>::const_iterator;
|
||||
|
||||
collection()
|
||||
: proxy_(std::make_shared<collection_proxy<Type>>()) {}
|
||||
|
||||
Reference in New Issue
Block a user