rpc: Fix indentation

Signed-off-by: Asias He <asias@cloudius-systems.com>
This commit is contained in:
Asias He
2015-04-08 17:45:33 +08:00
committed by Avi Kivity
parent 60ece9f40d
commit 9dff2bfa40

View File

@@ -439,7 +439,7 @@ void protocol<Serializer, MsgType>::server::accept(server_socket&& ss) {
template<typename Serializer, typename MsgType>
protocol<Serializer, MsgType>::server::connection::connection(protocol<Serializer, MsgType>::server& s, connected_socket&& fd, socket_address&& addr, protocol<Serializer, MsgType>& proto)
: protocol<Serializer, MsgType>::connection(std::move(fd), proto), _server(s) {
: protocol<Serializer, MsgType>::connection(std::move(fd), proto), _server(s) {
_info.addr = std::move(addr);
}