Lots more clean-ups
[invirt/third/libt4.git] / rpc / marshall_wrap.h
index 2d7fbfb..8d5b15a 100644 (file)
@@ -85,7 +85,7 @@ struct marshalled_func_imp<F, C, RV(R&, Args...), ErrorHandler> {
         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<typename decay<Args>::type>()...};
+            ArgsStorage t = {u._grab<typename decay<Args>::type>()...};
             // Verify successful unmarshalling of the entire input stream.
             if (!u.okdone())
                 return (RV)ErrorHandler::unmarshall_args_failure();