Skip to content

Commit 69c71bc

Browse files
committed
formatting
1 parent a86b271 commit 69c71bc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/tasks/thread_pool.hpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,7 @@ class SerialPool {
197197
}
198198

199199
int size() const { return 1; }
200+
void wait() {}
200201

201202
TaskStatus check_task_returns() {
202203
TaskStatus overall = TaskStatus::complete;
@@ -216,7 +217,7 @@ class SerialPool {
216217
};
217218

218219
#ifdef PARTHENON_USE_SERIAL_POOL
219-
using Pool_t = SerialPool;
220+
using Pool_t = SerialPool<TaskStatus>;
220221
#else
221222
using Pool_t = ThreadPool;
222223
#endif

0 commit comments

Comments
 (0)