summaryrefslogtreecommitdiff
path: root/src/fs_event_wrap.cc
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2016-06-28 21:21:21 +0200
committerBen Noordhuis <info@bnoordhuis.nl>2016-06-28 21:21:21 +0200
commit8e395222de010c65110988e72068fcf2b2f09030 (patch)
tree492763c1004c3a0f1c39c17c620bc47808da0f73 /src/fs_event_wrap.cc
parentdf3a192496e3ac6f62435245cca233b0da992708 (diff)
downloadandroid-node-v8-8e395222de010c65110988e72068fcf2b2f09030.tar.gz
android-node-v8-8e395222de010c65110988e72068fcf2b2f09030.tar.bz2
android-node-v8-8e395222de010c65110988e72068fcf2b2f09030.zip
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/fs_event_wrap.cc')
-rw-r--r--src/fs_event_wrap.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fs_event_wrap.cc b/src/fs_event_wrap.cc
index 3f0df1140c..10af967def 100644
--- a/src/fs_event_wrap.cc
+++ b/src/fs_event_wrap.cc
@@ -35,7 +35,7 @@ class FSEventWrap: public HandleWrap {
private:
FSEventWrap(Environment* env, Local<Object> object);
- virtual ~FSEventWrap() override;
+ ~FSEventWrap() override;
static void OnEvent(uv_fs_event_t* handle, const char* filename, int events,
int status);