Revision: 10997
Author: [email protected]
Date: Sat Mar 10 23:35:21 2012
Log: Style fix after reapplying the patch r10996.
BUG=none
TEST=none
[email protected]
Review URL: https://chromiumcodereview.appspot.com/9664042
http://code.google.com/p/v8/source/detail?r=10997
Modified:
/branches/bleeding_edge/src/profile-generator.cc
/branches/bleeding_edge/src/profile-generator.h
=======================================
--- /branches/bleeding_edge/src/profile-generator.cc Sat Mar 10 23:02:19
2012
+++ /branches/bleeding_edge/src/profile-generator.cc Sat Mar 10 23:35:21
2012
@@ -1472,7 +1472,8 @@
}
-Handle<HeapObject>
HeapSnapshotsCollection::FindHeapObjectById(SnapshotObjectId id) {
+Handle<HeapObject> HeapSnapshotsCollection::FindHeapObjectById(
+ SnapshotObjectId id) {
// First perform a full GC in order to avoid dead objects.
HEAP->CollectAllGarbage(Heap::kMakeHeapIterableMask,
"HeapSnapshotsCollection::FindHeapObjectById");
=======================================
--- /branches/bleeding_edge/src/profile-generator.h Sat Mar 10 23:02:19 2012
+++ /branches/bleeding_edge/src/profile-generator.h Sat Mar 10 23:35:21 2012
@@ -717,7 +717,9 @@
private:
struct EntryInfo {
explicit EntryInfo(SnapshotObjectId id) : id(id), accessed(true) { }
- EntryInfo(SnapshotObjectId id, bool accessed) : id(id),
accessed(accessed) { }
+ EntryInfo(SnapshotObjectId id, bool accessed)
+ : id(id),
+ accessed(accessed) { }
SnapshotObjectId id;
bool accessed;
};
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev