Reviewers: Yang,

Description:
Fix another instance of the previous build issue

[email protected]
BUG=

Please review this at https://codereview.chromium.org/1264233005/

Base URL: https://chromium.googlesource.com/v8/v8.git@master

Affected files (+1, -1 lines):
  M src/scopes.cc


Index: src/scopes.cc
diff --git a/src/scopes.cc b/src/scopes.cc
index 4c997d04e0bb49ceb6c425278b2457c5a1aded83..319aca518ed69187dc29cc817c58f9266b2a8700 100644
--- a/src/scopes.cc
+++ b/src/scopes.cc
@@ -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);
     }


--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to