Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
jonahm-LANL committed Jan 6, 2025
1 parent a86b271 commit 69c71bc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/tasks/thread_pool.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,7 @@ class SerialPool {
}

int size() const { return 1; }
void wait() {}

TaskStatus check_task_returns() {
TaskStatus overall = TaskStatus::complete;
Expand All @@ -216,7 +217,7 @@ class SerialPool {
};

#ifdef PARTHENON_USE_SERIAL_POOL
using Pool_t = SerialPool;
using Pool_t = SerialPool<TaskStatus>;
#else
using Pool_t = ThreadPool;
#endif
Expand Down

0 comments on commit 69c71bc

Please sign in to comment.