diff --git a/src/uvw/fs.h b/src/uvw/fs.h index 1adaa77f..2344b9f1 100644 --- a/src/uvw/fs.h +++ b/src/uvw/fs.h @@ -231,15 +231,6 @@ protected: } } - template - static void fs_generic_callback(uv_fs_t *req) { - if(auto ptr = request::reserve(req); req->result < 0) { - ptr->publish(error_event{req->result}); - } else { - ptr->publish(fs_event{req->path}); - } - } - public: using time = std::chrono::duration; using fs_type = details::uvw_fs_type;