File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -53,9 +53,9 @@ class Platform : public v8::Platform {
53
53
virtual ~Platform () override ;
54
54
55
55
void CallOnBackgroundThread (v8::Task* task,
56
- ExpectedRuntime expected_runtime);
57
- void CallOnForegroundThread (v8::Isolate* isolate, v8::Task* task);
58
- double MonotonicallyIncreasingTime ();
56
+ ExpectedRuntime expected_runtime) override ;
57
+ void CallOnForegroundThread (v8::Isolate* isolate, v8::Task* task) override ;
58
+ double MonotonicallyIncreasingTime () override ;
59
59
60
60
protected:
61
61
static void WorkerBody (void * arg);
Original file line number Diff line number Diff line change @@ -32,11 +32,11 @@ class ExternString: public ResourceType {
32
32
isolate ()->AdjustAmountOfExternalAllocatedMemory (change_in_bytes);
33
33
}
34
34
35
- const TypeName* data () const {
35
+ const TypeName* data () const override {
36
36
return data_;
37
37
}
38
38
39
- size_t length () const {
39
+ size_t length () const override {
40
40
return length_;
41
41
}
42
42
You can’t perform that action at this time.
0 commit comments