diff options
author | Ben Noordhuis <info@bnoordhuis.nl> | 2016-06-28 21:21:21 +0200 |
---|---|---|
committer | Jeremiah Senkpiel <fishrock123@rocketmail.com> | 2016-07-05 22:36:39 +0200 |
commit | 5fd158568f93c3c9aab517774a98ec8bb5ca22a7 (patch) | |
tree | 0a41a66de3294af228f7c971e7db9cdd19ddfcf9 /src/handle_wrap.h | |
parent | b7e006b489c6d0ffaa41e534128421ad71d5206a (diff) | |
download | node-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.h | 2 |
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; |