Revision: 3107
Author: [email protected]
Date: Wed Oct 21 08:37:14 2009
Log: Fix lint error.

[email protected]
Review URL: http://codereview.chromium.org/293048
http://code.google.com/p/v8/source/detail?r=3107

Modified:
  /branches/bleeding_edge/src/heap.cc

=======================================
--- /branches/bleeding_edge/src/heap.cc Wed Oct 21 08:03:34 2009
+++ /branches/bleeding_edge/src/heap.cc Wed Oct 21 08:37:14 2009
@@ -3391,7 +3391,9 @@
    // of 2.
    Address new_space_start =
        RoundUp(reinterpret_cast<byte*>(chunk), 2 *  
reserved_semispace_size_);
-  if (!new_space_.Setup(new_space_start, 2 * reserved_semispace_size_))  
return false;
+  if (!new_space_.Setup(new_space_start, 2 * reserved_semispace_size_)) {
+    return false;
+  }

    // Initialize old pointer space.
    old_pointer_space_ =

--~--~---------~--~----~------------~-------~--~----~
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
-~----------~----~----~----~------~----~------~--~---

Reply via email to