Update examples/server/server.cpp
Co-authored-by: Jared Van Bortel <cebtenzzre@gmail.com>
This commit is contained in:
parent
09da4b14f9
commit
0e1a5aa5fa
1 changed files with 2 additions and 2 deletions
|
@ -169,8 +169,8 @@ struct task_result {
|
||||||
|
|
||||||
struct task_multi {
|
struct task_multi {
|
||||||
int id;
|
int id;
|
||||||
std::unordered_set<int> subtasks_remaining{};
|
std::unordered_set<int> subtasks_remaining;
|
||||||
std::vector<task_result> results{};
|
std::vector<task_result> results;
|
||||||
};
|
};
|
||||||
|
|
||||||
// TODO: can become bool if we can't find use of more states
|
// TODO: can become bool if we can't find use of more states
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue