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/node_crypto_bio.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/node_crypto_bio.h')
-rw-r--r--src/node_crypto_bio.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/node_crypto_bio.h b/src/node_crypto_bio.h
index b7f1d4f169e..ef7012ba728 100644
--- a/src/node_crypto_bio.h
+++ b/src/node_crypto_bio.h
@@ -40,7 +40,7 @@ namespace crypto {
// (a.k.a. std::unique_ptr<BIO>).
class NodeBIO : public MemoryRetainer {
public:
- ~NodeBIO();
+ ~NodeBIO() override;
static BIOPointer New(Environment* env = nullptr);