From b8f87146602f94426eb66d9ee27f6e8a4c72d8ec Mon Sep 17 00:00:00 2001 From: myun2 Date: Mon, 9 Jul 2012 10:11:00 +0900 Subject: [PATCH] [gcc] io/socket/socket.hpp --- roast/include/roast/io/socket/socket.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roast/include/roast/io/socket/socket.hpp b/roast/include/roast/io/socket/socket.hpp index 5d91964a..c11f6b65 100644 --- a/roast/include/roast/io/socket/socket.hpp +++ b/roast/include/roast/io/socket/socket.hpp @@ -52,7 +52,7 @@ namespace roast socket_type sock = m_impl.create(m_openparam); if ( sock == _Impl::invalid_handle ) throw socket_exception("roast::io::socket::create_socket(): Failed create new socket."); - m_handle = sock; + _Base::m_handle = sock; return sock; } socket_type create_socket(int family, int socktype, int protocol) @@ -61,7 +61,7 @@ namespace roast socket_type sock = m_impl.create(m_openparam); if ( sock == _Impl::invalid_handle ) throw socket_exception("roast::io::socket::create_socket(): Failed create new socket."); - m_handle = sock; + _Base::m_handle = sock; return sock; } -- 2.11.0