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:
parent
428b332e68
commit
2d99027935
2 changed files with 18 additions and 0 deletions
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue