Skip to content
Snippets Groups Projects
Commit 98d5f26e authored by Olivier Stasse's avatar Olivier Stasse
Browse files

Fix warning in tests.

parent 4d1b272a
No related branches found
No related tags found
No related merge requests found
......@@ -163,7 +163,7 @@ namespace PatternGeneratorJRL {
unsigned int lNbActuatedJoints = actuatedJoints.size();
double * dInitPos = new double[lNbActuatedJoints];
for(int i=0;i<lNbActuatedJoints;i++)
for(unsigned int i=0;i<lNbActuatedJoints;i++)
dInitPos[i] = 0.0;
ifstream aif;
......
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