fixed compilation
This commit is contained in:
@@ -21,7 +21,7 @@ public:
|
||||
collection(const collection& other) = default;
|
||||
|
||||
void push_back(const value_type& value) {
|
||||
proxy_->items().push_back(value);
|
||||
proxy_->push_back(value);
|
||||
}
|
||||
|
||||
iterator begin() {
|
||||
@@ -41,11 +41,11 @@ public:
|
||||
}
|
||||
|
||||
[[nodiscard]] size_t size() const {
|
||||
return proxy_->items().size();
|
||||
return proxy_->size();
|
||||
}
|
||||
|
||||
[[nodiscard]] bool empty() const {
|
||||
return proxy_->items().empty();
|
||||
return proxy_->empty();
|
||||
}
|
||||
|
||||
void reset(std::shared_ptr<collection_proxy<Type>> proxy) {
|
||||
|
||||
Reference in New Issue
Block a user