Merge pull request #18 from electron/upgrade-to-chromium-63
virtual members need a virtual destructor
This commit is contained in:
commit
a38fb5df41
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ class Dictionary {
|
||||||
public:
|
public:
|
||||||
Dictionary();
|
Dictionary();
|
||||||
Dictionary(v8::Isolate* isolate, v8::Local<v8::Object> object);
|
Dictionary(v8::Isolate* isolate, v8::Local<v8::Object> object);
|
||||||
~Dictionary();
|
virtual ~Dictionary();
|
||||||
|
|
||||||
static Dictionary CreateEmpty(v8::Isolate* isolate);
|
static Dictionary CreateEmpty(v8::Isolate* isolate);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue