Index: src/runtime/runtime-debug.cc |
diff --git a/src/runtime/runtime-debug.cc b/src/runtime/runtime-debug.cc |
index e3d18bc4ffd17c9c264d70e8c936b0b89f353531..87cca5e4474d0d55bc9724a865bd8f67473066d9 100644 |
--- a/src/runtime/runtime-debug.cc |
+++ b/src/runtime/runtime-debug.cc |
@@ -2487,7 +2487,7 @@ RUNTIME_FUNCTION(Runtime_DebugDisassembleFunction) { |
} |
OFStream os(stdout); |
func->code()->Print(os); |
- os << endl; |
+ os << std::endl; |
#endif // DEBUG |
return isolate->heap()->undefined_value(); |
} |
@@ -2504,7 +2504,7 @@ RUNTIME_FUNCTION(Runtime_DebugDisassembleConstructor) { |
} |
OFStream os(stdout); |
func->shared()->construct_stub()->Print(os); |
- os << endl; |
+ os << std::endl; |
#endif // DEBUG |
return isolate->heap()->undefined_value(); |
} |