From 2d3590dbdb23c82f1960327ffbd78e778231b9c8 Mon Sep 17 00:00:00 2001 From: Kitsune Ral Date: Fri, 13 Oct 2017 23:17:06 +0200 Subject: Pass universal references in Connection::callApi<>; fixed a typo in util.h So that even uncopyable types could be used for parameters; also fixed a typo in util.h that prevented dispatch() from using with multiple argument functions. --- connection.h | 4 ++-- util.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/connection.h b/connection.h index 213bf26f..dbb50b9a 100644 --- a/connection.h +++ b/connection.h @@ -144,9 +144,9 @@ namespace QMatrixClient * argument - callApi() will pass it automatically. */ template - JobT* callApi(JobArgTs... jobArgs) const + JobT* callApi(JobArgTs&&... jobArgs) const { - auto job = new JobT(jobArgs...); + auto job = new JobT(std::forward(jobArgs)...); job->start(connectionData()); return job; } diff --git a/util.h b/util.h index 1f9e3f0b..0c8f3640 100644 --- a/util.h +++ b/util.h @@ -231,7 +231,7 @@ namespace QMatrixClient template Dispatch dispatch(ArgTs&& ... args) { - return Dispatch(std::forward(args)...); + return Dispatch(std::forward(args)...); } // The below enables pretty-printing of enums in logs -- cgit v1.2.3