summaryrefslogtreecommitdiff
path: root/include/mbgl/util/work_task.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/mbgl/util/work_task.hpp')
-rw-r--r--include/mbgl/util/work_task.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/mbgl/util/work_task.hpp b/include/mbgl/util/work_task.hpp
index e9c2062d9c..dda8e5d00f 100644
--- a/include/mbgl/util/work_task.hpp
+++ b/include/mbgl/util/work_task.hpp
@@ -17,10 +17,10 @@ public:
virtual void cancel() = 0;
template <class Fn, class... Args>
- static std::shared_ptr<WorkTask> make(Fn&& fn, Args&&... args);
+ static std::shared_ptr<WorkTask> make(Fn&&, Args&&...);
- template <class Fn, class Cb, class... Args>
- static std::shared_ptr<WorkTask> makeWithCallback(Fn&& fn, Cb&& callback, Args&&... args);
+ template <class Fn, class... Args>
+ static std::shared_ptr<WorkTask> makeWithCallback(Fn&&, Args&&...);
};
} // namespace mbgl