From: mikhail.naganov@gmail.com Date: Tue, 10 Aug 2010 07:37:59 +0000 (+0000) Subject: Fix lint issue. X-Git-Tag: upstream/4.7.83~21393 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2bb3fa2ae08d6229745cf10e711e1ced5b52dffe;p=platform%2Fupstream%2Fv8.git Fix lint issue. git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@5225 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- diff --git a/src/profile-generator.cc b/src/profile-generator.cc index cc46606..8316079 100644 --- a/src/profile-generator.cc +++ b/src/profile-generator.cc @@ -1218,10 +1218,10 @@ HeapSnapshot::HeapSnapshot(HeapSnapshotsCollection* collection, entries_sorted_(false) { STATIC_ASSERT( sizeof(HeapGraphEdge) == - SnapshotSizeConstants::kExpectedHeapGraphEdgeSize); + SnapshotSizeConstants::kExpectedHeapGraphEdgeSize); // NOLINT STATIC_ASSERT( sizeof(HeapEntry) == - SnapshotSizeConstants::kExpectedHeapEntrySize); + SnapshotSizeConstants::kExpectedHeapEntrySize); // NOLINT }