| Index: src/objects.h
|
| diff --git a/src/objects.h b/src/objects.h
|
| index bc5c196bff48187b6400cf0e758611b549d105ee..6be33e46b922d1077569d5d7a864fba7d814df57 100644
|
| --- a/src/objects.h
|
| +++ b/src/objects.h
|
| @@ -9719,10 +9719,11 @@ class Oddball: public HeapObject {
|
| DECLARE_VERIFIER(Oddball)
|
|
|
| // Initialize the fields.
|
| - MUST_USE_RESULT MaybeObject* Initialize(Heap* heap,
|
| - const char* to_string,
|
| - Object* to_number,
|
| - byte kind);
|
| + static void Initialize(Isolate* isolate,
|
| + Handle<Oddball> oddball,
|
| + const char* to_string,
|
| + Handle<Object> to_number,
|
| + byte kind);
|
|
|
| // Layout description.
|
| static const int kToStringOffset = HeapObject::kHeaderSize;
|
|
|