From 92efad4970af34da59c982f1d5eb8ed806ea3818 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Wed, 13 Jul 2022 21:36:01 -0400 Subject: [PATCH] Switch to std::vector. --- Concurrency/AsyncTaskQueue.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Concurrency/AsyncTaskQueue.hpp b/Concurrency/AsyncTaskQueue.hpp index 225f49580..3a000ef09 100644 --- a/Concurrency/AsyncTaskQueue.hpp +++ b/Concurrency/AsyncTaskQueue.hpp @@ -12,9 +12,9 @@ #include #include #include -#include #include #include +#include #if defined(__APPLE__) && !defined(IGNORE_APPLE) #include @@ -23,7 +23,7 @@ namespace Concurrency { -using TaskList = std::list>; +using TaskList = std::vector>; /*! An async task queue allows a caller to enqueue void(void) functions. Those functions are guaranteed