Index: src/runtime/runtime-internal.cc |
diff --git a/src/runtime/runtime-internal.cc b/src/runtime/runtime-internal.cc |
index 290d7af2fae113949d0394e6fad32de882747a65..5d1a589b1b6fc3d3120865dbe96c96a7188da173 100644 |
--- a/src/runtime/runtime-internal.cc |
+++ b/src/runtime/runtime-internal.cc |
@@ -222,9 +222,10 @@ RUNTIME_FUNCTION(Runtime_RenderCallSite) { |
if (location.start_pos() == -1) return isolate->heap()->empty_string(); |
Zone zone; |
- SmartPointer<ParseInfo> info(location.function()->shared()->is_function() |
- ? new ParseInfo(&zone, location.function()) |
- : new ParseInfo(&zone, location.script())); |
+ base::SmartPointer<ParseInfo> info( |
+ location.function()->shared()->is_function() |
+ ? new ParseInfo(&zone, location.function()) |
+ : new ParseInfo(&zone, location.script())); |
if (!Parser::ParseStatic(info.get())) { |
isolate->clear_pending_exception(); |