| Index: src/d8.h
|
| diff --git a/src/d8.h b/src/d8.h
|
| index 3ec03907ed112259cce70fddc1fc8da8140b0d3f..5751da47f367365091053b879d14086513d08d65 100644
|
| --- a/src/d8.h
|
| +++ b/src/d8.h
|
| @@ -31,7 +31,7 @@
|
| #ifndef V8_SHARED
|
| #include "allocation.h"
|
| #include "hashmap.h"
|
| -#include "smart-pointer.h"
|
| +#include "smart-array-pointer.h"
|
| #include "v8.h"
|
| #else
|
| #include "../include/v8.h"
|
| @@ -157,9 +157,9 @@ class SourceGroup {
|
| static i::Thread::Options GetThreadOptions();
|
| void ExecuteInThread();
|
|
|
| - i::SmartPointer<i::Semaphore> next_semaphore_;
|
| - i::SmartPointer<i::Semaphore> done_semaphore_;
|
| - i::SmartPointer<i::Thread> thread_;
|
| + i::SmartArrayPointer<i::Semaphore> next_semaphore_;
|
| + i::SmartArrayPointer<i::Semaphore> done_semaphore_;
|
| + i::SmartArrayPointer<i::Thread> thread_;
|
| #endif // V8_SHARED
|
|
|
| void ExitShell(int exit_code);
|
| @@ -336,7 +336,7 @@ class LineEditor {
|
| LineEditor(Type type, const char* name);
|
| virtual ~LineEditor() { }
|
|
|
| - virtual i::SmartPointer<char> Prompt(const char* prompt) = 0;
|
| + virtual i::SmartArrayPointer<char> Prompt(const char* prompt) = 0;
|
| virtual bool Open() { return true; }
|
| virtual bool Close() { return true; }
|
| virtual void AddHistory(const char* str) { }
|
|
|