summaryrefslogtreecommitdiffstats
path: root/engine/include/core/task.hpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--engine/include/core/task.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/include/core/task.hpp b/engine/include/core/task.hpp
index b6ddad1..90e3d97 100644
--- a/engine/include/core/task.hpp
+++ b/engine/include/core/task.hpp
@@ -18,7 +18,7 @@ namespace flat {
std::function<void()> m_callback;
};
- struct job : public std::multiset<task> {
+ struct job : public queue<task> {
inline auto add_task(task t) {
this->insert(t);
}
@@ -26,4 +26,4 @@ namespace flat {
void invoke_tasks();
};
}
-} \ No newline at end of file
+}