OVERRIDE => override

This commit is contained in:
Cheng Zhao 2015-01-09 17:23:18 -08:00
parent 753d5675dd
commit bcf87fd3c9

View file

@ -18,7 +18,7 @@ class PersistentDictionary : public Dictionary {
PersistentDictionary(v8::Isolate* isolate, v8::Handle<v8::Object> object); PersistentDictionary(v8::Isolate* isolate, v8::Handle<v8::Object> object);
virtual ~PersistentDictionary(); virtual ~PersistentDictionary();
virtual v8::Handle<v8::Object> GetHandle() const OVERRIDE; v8::Handle<v8::Object> GetHandle() const override;
private: private:
scoped_refptr<RefCountedPersistent<v8::Object> > handle_; scoped_refptr<RefCountedPersistent<v8::Object> > handle_;