bug fixing

This commit is contained in:
Michele Caini 2016-06-28 14:27:56 +02:00
parent 8a7dd0aee6
commit ced7ad47d5

View File

@ -98,7 +98,7 @@ public:
bool closing() const noexcept { return !(uv_is_closing(get<uv_handle_t>()) == 0); }
void reference() noexcept { uv_ref(get<uv_handle_t>()); }
void unreference() noexcept { uv_ref(get<uv_handle_t>()); }
void unreference() noexcept { uv_unref(get<uv_handle_t>()); }
bool referenced() const noexcept { return !(uv_has_ref(get<uv_handle_t>()) == 0); }
void close(std::function<void(UVWError, T &)> cb) noexcept {