Chromium Code Reviews| Index: src/objects.cc |
| =================================================================== |
| --- src/objects.cc (revision 3537) |
| +++ src/objects.cc (working copy) |
| @@ -6886,7 +6886,7 @@ |
| // 50% is still free after adding n elements and |
| // at most 50% of the free elements are deleted elements. |
| if ((nof + (nof >> 1) <= capacity) && |
| - (nod <= (capacity - nof) >> 1) ) return this; |
| + (nod <= (capacity - nof) >> 1)) return this; |
| Object* obj = Allocate(nof * 2); |
| if (obj->IsFailure()) return obj; |