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/base_object.h
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/base_object.h')
-rw-r--r--src/base_object.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/base_object.h b/src/base_object.h
index e0f3f27950e..090bb70aebe 100644
--- a/src/base_object.h
+++ b/src/base_object.h
@@ -38,7 +38,7 @@ class BaseObject : public MemoryRetainer {
// Associates this object with `object`. It uses the 0th internal field for
// that, and in particular aborts if there is no such field.
inline BaseObject(Environment* env, v8::Local<v8::Object> object);
- virtual inline ~BaseObject();
+ inline ~BaseObject() override;
// Returns the wrapped object. Returns an empty handle when
// persistent.IsEmpty() is true.