diff --git a/src/tasks/thread_pool.hpp b/src/tasks/thread_pool.hpp index 59b9acb316e9..e8af40cea4dd 100644 --- a/src/tasks/thread_pool.hpp +++ b/src/tasks/thread_pool.hpp @@ -197,6 +197,7 @@ class SerialPool { } int size() const { return 1; } + void wait() {} TaskStatus check_task_returns() { TaskStatus overall = TaskStatus::complete; @@ -216,7 +217,7 @@ class SerialPool { }; #ifdef PARTHENON_USE_SERIAL_POOL -using Pool_t = SerialPool; +using Pool_t = SerialPool; #else using Pool_t = ThreadPool; #endif