RESOLVED FIXED 75757
JSArray::pop() should compare SparseArrayValueMap::find() to SparseArrayValueMap::notFound()
https://bugs.webkit.org/show_bug.cgi?id=75757
Summary JSArray::pop() should compare SparseArrayValueMap::find() to SparseArrayValue...
Michael Saboff
Reported 2012-01-06 16:09:05 PST
In JSArray::pop(), the results of SparseArrayValueMap::find() (a SparseArrayValueMap::iterator) is compared against SparseArrayValueMap::end() (a SparseArrayValueMap::const_iterator). This fails to compile on some platforms. It should be compared against SparseArrayValueMap::notFound().
Attachments
Michael Saboff
Comment 1 2012-01-06 16:28:02 PST
Note You need to log in before you can comment on or make changes to this bug.