diff options
Diffstat (limited to 'core/templates/vset.h')
-rw-r--r-- | core/templates/vset.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/templates/vset.h b/core/templates/vset.h index 6665651d42..94e7a17061 100644 --- a/core/templates/vset.h +++ b/core/templates/vset.h @@ -119,7 +119,7 @@ public: if (pos < 0) { return; } - _data.remove(pos); + _data.remove_at(pos); } int find(const T &p_val) const { |