We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Some code to access the Task::orders_ vector and the usage for order_index_ is complicated, for example
Task::orders_
order_index_
if (task_.getOrders().size() >= order_index_) { order_index_ = -1; send_next_task_to_physical_ = true; }
I assume that the index is set to -1 so that in the next iteration/call it is increased again to 0 to always access the first element?
-1
0
Maybe this could be simplified with something like a std::deque?
std::deque
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Some code to access the
Task::orders_
vector and the usage fororder_index_
is complicated, for exampleI assume that the index is set to
-1
so that in the next iteration/call it is increased again to0
to always access the first element?Maybe this could be simplified with something like a
std::deque
?The text was updated successfully, but these errors were encountered: