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:
authorBen Noordhuis <info@bnoordhuis.nl>2016-06-28 22:21:21 +0300
committerBen Noordhuis <info@bnoordhuis.nl>2016-06-28 22:21:21 +0300
commit8e395222de010c65110988e72068fcf2b2f09030 (patch)
tree492763c1004c3a0f1c39c17c620bc47808da0f73 /src/handle_wrap.h
parentdf3a192496e3ac6f62435245cca233b0da992708 (diff)
src: fix readability/inheritance cpplint warnings
PR-URL: https://github.com/nodejs/node/pull/7462 Reviewed-By: Trevor Norris <trev.norris@gmail.com>
Diffstat (limited to 'src/handle_wrap.h')
-rw-r--r--src/handle_wrap.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/handle_wrap.h b/src/handle_wrap.h
index eaf0faef200..60f30fbd105 100644
--- a/src/handle_wrap.h
+++ b/src/handle_wrap.h
@@ -55,7 +55,7 @@ class HandleWrap : public AsyncWrap {
uv_handle_t* handle,
AsyncWrap::ProviderType provider,
AsyncWrap* parent = nullptr);
- virtual ~HandleWrap() override;
+ ~HandleWrap() override;
private:
friend class Environment;