Skip to content

Commit 6dd0ed8

Browse files
committed
Fix formatting
1 parent b758cc4 commit 6dd0ed8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

bindings/map-get.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,8 @@ static bool IsOrderedHashMap(Address table_untagged) {
352352
return false;
353353

354354
// The length of the array must be enough to store the whole map.
355-
return length >= 3 + num_buckets + OrderedHashMapLayout::kEntrySize * capacity;
355+
return length >=
356+
3 + num_buckets + OrderedHashMapLayout::kEntrySize * capacity;
356357
}
357358

358359
// ============================================================================

0 commit comments

Comments
 (0)