Fix removing elements from std::list Java wrapper

Add missing remove method on Java side (without it elements aren't
removed).
This commit is contained in:
William S Fulton 2017-06-23 16:17:00 +01:00
commit 2d99027935
2 changed files with 18 additions and 0 deletions

View file

@ -165,6 +165,8 @@ namespace std {
%rename(isEmpty) empty;
bool empty() const;
void clear();
%rename(remove) erase;
iterator erase(iterator pos);
size_type max_size() const;
void pop_back();
void pop_front();