Skip to content
Snippets Groups Projects
Unverified Commit baeb4ef9 authored by Guilhem Saurel's avatar Guilhem Saurel Committed by GitHub
Browse files

Merge pull request #162 from florent-lamiraux/devel

Fix compilation warning.
parents 429c0200 fff9a471
No related branches found
No related tags found
No related merge requests found
......@@ -953,7 +953,7 @@ GraphPtr_t graphBuilder(const ProblemSolverPtr_t& ps,
std::get<2>(objects[i]) = i;
std::get<1>(objects[i]).resize(od.handles.size());
Handles_t::iterator it = std::get<1>(objects[i]).begin();
for (const std::string hn : od.handles) {
for (const std::string& hn : od.handles) {
*it = robot.handles.get(hn);
++it;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment