Commit 4d0f2839 authored by ulan@chromium.org's avatar ulan@chromium.org

Fix a compiler error on Windows introduced by r10093

BUG=
TEST=

Review URL: http://codereview.chromium.org/8749008

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@10100 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 59897dbe
......@@ -773,7 +773,7 @@ void IncrementalMarking::Step(intptr_t allocated_bytes) {
}
if (state_ == SWEEPING) {
if (heap_->AdvanceSweepers(bytes_to_process)) {
if (heap_->AdvanceSweepers(static_cast<int>(bytes_to_process))) {
bytes_scanned_ = 0;
StartMarking(PREVENT_COMPACTION);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment