Commit ccf6c266 authored by bmeurer@chromium.org's avatar bmeurer@chromium.org

Fix windows build.

TBR=svenpanne@chromium.org

Review URL: https://codereview.chromium.org/550063002

git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@23761 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 20db0ff3
......@@ -786,7 +786,7 @@ void* OS::Allocate(const size_t requested,
if (mbase == NULL) return NULL;
DCHECK((static_cast<uintptr_t>(mbase) % OS::AllocateAlignment()) == 0);
DCHECK((reinterpret_cast<uintptr_t>(mbase) % OS::AllocateAlignment()) == 0);
*allocated = msize;
return mbase;
......
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