* change to set
This commit is contained in:
parent
38ce5d02e0
commit
0f175a6084
1 changed files with 1 additions and 2 deletions
|
@ -24,7 +24,6 @@
|
|||
#include <thread>
|
||||
#include <mutex>
|
||||
#include <chrono>
|
||||
#include <unordered_set>
|
||||
|
||||
#ifndef SERVER_VERBOSE
|
||||
#define SERVER_VERBOSE 1
|
||||
|
@ -169,7 +168,7 @@ struct task_result {
|
|||
|
||||
struct task_multi {
|
||||
int id;
|
||||
std::unordered_set<int> subtasks_remaining{};
|
||||
std::set<int> subtasks_remaining{};
|
||||
std::vector<task_result> results{};
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue