Skip to content

Commit

Permalink
[Issue JdeRobot#792] Removes compilation warnings from libs visionlib…
Browse files Browse the repository at this point in the history
…/imgAnalyze
  • Loading branch information
lr-morales committed Jul 29, 2017
1 parent b132e78 commit f066d4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libs/visionlib/imgAnalyze/linesDetection.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ namespace visionLibrary {
i = 0;
first = true;

while ((i < (vecContours[contour].size() - (i_jump - 1)))) {
while ((static_cast<unsigned int>(i) < (vecContours[contour].size() - (i_jump - 1)))) {

counter++;

Expand Down

0 comments on commit f066d4f

Please sign in to comment.