| Index: Source/wtf/HashMap.h
|
| diff --git a/Source/wtf/HashMap.h b/Source/wtf/HashMap.h
|
| index 3a0c246f5a709d496b8d9cdef470012cdd81b906..7ae3511d53be738d974c7ef9648f565cc6bcb8dc 100644
|
| --- a/Source/wtf/HashMap.h
|
| +++ b/Source/wtf/HashMap.h
|
| @@ -432,11 +432,11 @@ namespace WTF {
|
|
|
| typedef typename HashMap<T, U, V, W, X>::const_iterator const_iterator;
|
|
|
| - const_iterator end = a.end();
|
| - const_iterator notFound = b.end();
|
| - for (const_iterator it = a.begin(); it != end; ++it) {
|
| + const_iterator aEnd = a.end();
|
| + const_iterator bEnd = b.end();
|
| + for (const_iterator it = a.begin(); it != aEnd; ++it) {
|
| const_iterator bPos = b.find(it->key);
|
| - if (bPos == notFound || it->value != bPos->value)
|
| + if (bPos == bEnd || it->value != bPos->value)
|
| return false;
|
| }
|
|
|
|
|