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/stream_pipe.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/stream_pipe.h')
-rw-r--r--src/stream_pipe.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stream_pipe.h b/src/stream_pipe.h
index 51a33b7ef69..ce0077749c8 100644
--- a/src/stream_pipe.h
+++ b/src/stream_pipe.h
@@ -10,7 +10,7 @@ namespace node {
class StreamPipe : public AsyncWrap {
public:
StreamPipe(StreamBase* source, StreamBase* sink, v8::Local<v8::Object> obj);
- ~StreamPipe();
+ ~StreamPipe() override;
void Unpipe();