Commit 1813f80d authored by rossberg's avatar rossberg Committed by Commit bot

Fix another instance of the previous build issue

TBR=yangguo@chromium.org
BUG=

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

Cr-Commit-Position: refs/heads/master@{#30006}
parent c11ab6f7
......@@ -913,7 +913,7 @@ void Scope::Print(int n) {
if (i > 0) PrintF(", ");
const AstRawString* name = params_[i]->raw_name();
if (name->IsEmpty())
PrintF(".%p", params_[i]);
PrintF(".%p", reinterpret_cast<void*>(params_[i]));
else
PrintName(name);
}
......
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