summaryrefslogtreecommitdiff
path: root/include/mbgl/util/run_loop.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/mbgl/util/run_loop.hpp')
-rw-r--r--include/mbgl/util/run_loop.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/mbgl/util/run_loop.hpp b/include/mbgl/util/run_loop.hpp
index af1053dfdc..6559b72ef8 100644
--- a/include/mbgl/util/run_loop.hpp
+++ b/include/mbgl/util/run_loop.hpp
@@ -61,10 +61,10 @@ public:
}
// Invoke fn(args...) on this RunLoop, then invoke callback(results...) on the current RunLoop.
- template <class Fn, class Cb, class... Args>
+ template <class Fn, class... Args>
std::unique_ptr<AsyncRequest>
- invokeWithCallback(Fn&& fn, Cb&& callback, Args&&... args) {
- std::shared_ptr<WorkTask> task = WorkTask::makeWithCallback(std::forward<Fn>(fn), std::forward<Cb>(callback), std::forward<Args>(args)...);
+ invokeWithCallback(Fn&& fn, Args&&... args) {
+ std::shared_ptr<WorkTask> task = WorkTask::makeWithCallback(std::forward<Fn>(fn), std::forward<Args>(args)...);
push(task);
return std::make_unique<WorkRequest>(task);
}