| Index: src/runtime/runtime.h
|
| diff --git a/src/runtime/runtime.h b/src/runtime/runtime.h
|
| index e1bc926e28cefce721e56dec773425844281ad87..799741563439e9fc1c76b3f6a1138015763a84e9 100644
|
| --- a/src/runtime/runtime.h
|
| +++ b/src/runtime/runtime.h
|
| @@ -898,6 +898,8 @@ class Runtime : public AllStatic {
|
| };
|
|
|
|
|
| +std::ostream& operator<<(std::ostream&, Runtime::FunctionId);
|
| +
|
| //---------------------------------------------------------------------------
|
| // Constants used by interface to runtime functions.
|
|
|
| @@ -907,7 +909,8 @@ class AllocateTargetSpace : public BitField<AllocationSpace, 1, 3> {};
|
| class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {};
|
| class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {};
|
| class DeclareGlobalsStrictMode : public BitField<StrictMode, 2, 1> {};
|
| -}
|
| -} // namespace v8::internal
|
| +
|
| +} // namespace internal
|
| +} // namespace v8
|
|
|
| #endif // V8_RUNTIME_H_
|
|
|