Index: src/profile-generator.h |
diff --git a/src/profile-generator.h b/src/profile-generator.h |
index ba617f9e40be969fc27c7a260c158cea849798bd..e7a41cbfe9b8f9c211f7d4ceacc06a089b540bc9 100644 |
--- a/src/profile-generator.h |
+++ b/src/profile-generator.h |
@@ -717,7 +717,9 @@ class HeapObjectsMap { |
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; |
}; |