diff --git a/modules/beast_asio/sockets/beast_SocketBase.h b/modules/beast_asio/sockets/beast_SocketBase.h index 8259526d8..fa7c1c8f6 100644 --- a/modules/beast_asio/sockets/beast_SocketBase.h +++ b/modules/beast_asio/sockets/beast_SocketBase.h @@ -126,7 +126,7 @@ protected: typedef void result_type; template - CompletionCall (BOOST_ASIO_MOVE_ARG (Handler) handler) + CompletionCall (BOOST_ASIO_MOVE_ARG(Handler) handler) : m_call (new CallType (handler)) { } @@ -150,7 +150,7 @@ protected: template struct CallType : Call { - CallType (BOOST_ASIO_MOVE_ARG (Handler) handler) + CallType (BOOST_ASIO_MOVE_ARG(Handler) handler) : m_handler (handler) { } @@ -187,7 +187,7 @@ protected: typedef void result_type; template - ErrorCall (BOOST_ASIO_MOVE_ARG (Handler) handler) + ErrorCall (BOOST_ASIO_MOVE_ARG(Handler) handler) : m_call (new CallType (handler)) { } @@ -211,7 +211,7 @@ protected: template struct CallType : Call { - CallType (BOOST_ASIO_MOVE_ARG (Handler) handler) + CallType (BOOST_ASIO_MOVE_ARG(Handler) handler) : m_handler (handler) { } @@ -245,7 +245,7 @@ protected: typedef void result_type; template - TransferCall (BOOST_ASIO_MOVE_ARG (Handler) handler) + TransferCall (BOOST_ASIO_MOVE_ARG(Handler) handler) : m_call (new CallType (handler)) { } @@ -269,7 +269,7 @@ protected: template struct CallType : Call { - CallType (BOOST_ASIO_MOVE_ARG (Handler) handler) + CallType (BOOST_ASIO_MOVE_ARG(Handler) handler) : m_handler (handler) { }