| Index: src/liveobjectlist-inl.h
|
| ===================================================================
|
| --- src/liveobjectlist-inl.h (revision 10367)
|
| +++ src/liveobjectlist-inl.h (working copy)
|
| @@ -59,7 +59,7 @@
|
| }
|
|
|
|
|
| -void LiveObjectList::ProcessNonLive(HeapObject *obj) {
|
| +void LiveObjectList::ProcessNonLive(HeapObject* obj) {
|
| // Only do work if we have at least one list to process.
|
| if (last()) DoProcessNonLive(obj);
|
| }
|
| @@ -93,7 +93,7 @@
|
| template <typename T>
|
| inline LiveObjectList::Element*
|
| LiveObjectList::FindElementFor(T (*GetValue)(LiveObjectList::Element*), T key) {
|
| - LiveObjectList *lol = last();
|
| + LiveObjectList* lol = last();
|
| while (lol != NULL) {
|
| Element* elements = lol->elements_;
|
| for (int i = 0; i < lol->obj_count_; i++) {
|
|
|