Searched refs:MethodArgTs (Results 1 – 1 of 1) sorted by relevance
1682 template <typename SPSSignature, typename ClassT, typename... MethodArgTs>1684 wrapAsyncWithSPS(ClassT *Instance, void (ClassT::*Method)(MethodArgTs...)) { in wrapAsyncWithSPS() argument1686 [Instance, Method](MethodArgTs &&...MethodArgs) { in wrapAsyncWithSPS()1687 (Instance->*Method)(std::forward<MethodArgTs>(MethodArgs)...); in wrapAsyncWithSPS()