Don't expose remove() method from std::list to avoid confusing it with Java's remove() in List

This commit is contained in:
Alan Woodland 2016-05-16 20:39:34 +01:00
commit b0de71857e

View file

@ -30,7 +30,6 @@ namespace std {
void pop_front();
void push_back(const value_type &x);
void push_front(const value_type &x);
void remove(const T &v);
// Possible bug: jint != size_type
jint size () const;