From de2e29701644105da52f09830aaa5b4278efb031 Mon Sep 17 00:00:00 2001 From: Gleb Natapov Date: Tue, 5 May 2015 12:07:20 +0300 Subject: [PATCH] rpc: handle future<> return type of an rpc handler properly --- rpc/rpc_impl.hh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/rpc/rpc_impl.hh b/rpc/rpc_impl.hh index 471006376c..e373f066b5 100644 --- a/rpc/rpc_impl.hh +++ b/rpc/rpc_impl.hh @@ -157,6 +157,9 @@ struct rcv_reply : rcv_reply_base { } }; +template +struct rcv_reply> : rcv_reply {}; + // structure to hold outgoing message parameters on a client side // while they are serialized template