X-Git-Url: http://xvm.mit.edu/gitweb/invirt/third/libt4.git/blobdiff_plain/d54215aea2a7321ab0f2dc7b0042fea2b7ff5df5..4e881433f37417ccbda89c09ffdf936855d462d4:/rpc/marshall_wrap.h diff --git a/rpc/marshall_wrap.h b/rpc/marshall_wrap.h index 8d5b15a..8e10a75 100644 --- a/rpc/marshall_wrap.h +++ b/rpc/marshall_wrap.h @@ -85,7 +85,7 @@ struct marshalled_func_imp { return new handler([=](unmarshall &u, marshall &m) -> RV { // Unmarshall each argument with the correct type and store the // result in a tuple. - ArgsStorage t = {u._grab::type>()...}; + ArgsStorage t{u._grab::type>()...}; // Verify successful unmarshalling of the entire input stream. if (!u.okdone()) return (RV)ErrorHandler::unmarshall_args_failure();