Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgengjiawen <technicalcute@gmail.com>2019-02-14 18:12:43 +0300
committerDaniel Bevenius <daniel.bevenius@gmail.com>2019-02-18 07:43:22 +0300
commitc3d889182b0c958e922aec96e3aab43766884536 (patch)
treedf09fb66d061fb80a25e51b9d66a92cd3661eac2 /src/inspector
parent77b39c2eb2c9fe437d0e09e3e7682564d815c7fb (diff)
src: apply clang-tidy rule modernize-use-override
PR-URL: https://github.com/nodejs/node/pull/26103 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
Diffstat (limited to 'src/inspector')
-rw-r--r--src/inspector/main_thread_interface.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inspector/main_thread_interface.cc b/src/inspector/main_thread_interface.cc
index 25b6270e412..25a82864c1e 100644
--- a/src/inspector/main_thread_interface.cc
+++ b/src/inspector/main_thread_interface.cc
@@ -42,7 +42,7 @@ class CreateObjectRequest : public Request {
CreateObjectRequest(int object_id, Factory factory)
: object_id_(object_id), factory_(std::move(factory)) {}
- void Call(MainThreadInterface* thread) {
+ void Call(MainThreadInterface* thread) override {
thread->AddObject(object_id_, WrapInDeletable(factory_(thread)));
}