summaryrefslogtreecommitdiff
path: root/src/node_file.h
diff options
context:
space:
mode:
authorgengjiawen <technicalcute@gmail.com>2019-02-14 23:12:43 +0800
committerDaniel Bevenius <daniel.bevenius@gmail.com>2019-02-18 05:43:22 +0100
commitc3d889182b0c958e922aec96e3aab43766884536 (patch)
treedf09fb66d061fb80a25e51b9d66a92cd3661eac2 /src/node_file.h
parent77b39c2eb2c9fe437d0e09e3e7682564d815c7fb (diff)
downloadandroid-node-v8-c3d889182b0c958e922aec96e3aab43766884536.tar.gz
android-node-v8-c3d889182b0c958e922aec96e3aab43766884536.tar.bz2
android-node-v8-c3d889182b0c958e922aec96e3aab43766884536.zip
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/node_file.h')
-rw-r--r--src/node_file.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/node_file.h b/src/node_file.h
index 034e3c0427..f0c8f1dfbf 100644
--- a/src/node_file.h
+++ b/src/node_file.h
@@ -357,7 +357,7 @@ class FileHandle : public AsyncWrap, public StreamBase {
static FileHandle* New(Environment* env,
int fd,
v8::Local<v8::Object> obj = v8::Local<v8::Object>());
- virtual ~FileHandle();
+ ~FileHandle() override;
static void New(const v8::FunctionCallbackInfo<v8::Value>& args);