summaryrefslogtreecommitdiff
path: root/src/handle_wrap.h
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2016-06-28 21:21:21 +0200
committerJeremiah Senkpiel <fishrock123@rocketmail.com>2016-07-05 22:36:39 +0200
commit5fd158568f93c3c9aab517774a98ec8bb5ca22a7 (patch)
tree0a41a66de3294af228f7c971e7db9cdd19ddfcf9 /src/handle_wrap.h
parentb7e006b489c6d0ffaa41e534128421ad71d5206a (diff)
downloadnode-new-5fd158568f93c3c9aab517774a98ec8bb5ca22a7.tar.gz
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 eaf0faef20..60f30fbd10 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;