Don't expose sort() to avoid adding dependencies on all std::list users

This commit is contained in:
Alan Woodland 2016-05-16 21:24:11 +01:00
commit a2b092ab7e

View file

@ -44,7 +44,9 @@ namespace std {
// Possible bug: jint != size_type
jint size () const;
void sort();
// Although sort() is nice it makes operator<() mandatory which it probably shouldn't be
//void sort();
// Only for helping implement listIterator
iterator begin();