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/fs_event_wrap.cc
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/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 3f0df1140c0..10af967def4 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);