bug fixing

This commit is contained in:
Michele Caini 2019-03-17 17:23:57 +01:00
parent 995603f6fe
commit 8349a74801
2 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ endif()
# Project configuration # Project configuration
# #
project(uvw VERSION 1.14.1) project(uvw VERSION 1.14.2)
if(NOT CMAKE_BUILD_TYPE) if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE Debug) set(CMAKE_BUILD_TYPE Debug)

View File

@ -219,7 +219,7 @@ public:
*/ */
template<typename S> template<typename S>
void accept(S &ref) { void accept(S &ref) {
this->invoke(&uv_accept, this->template get<uv_stream_t>(), ref.template get<uv_stream_t>()); this->invoke(&uv_accept, this->template get<uv_stream_t>(), this->template get<uv_stream_t>(ref));
} }
/** /**