From 493155a37aae91ada672295128dd90c41fd770a8 Mon Sep 17 00:00:00 2001 From: Matt Hill Date: Sun, 27 Mar 2016 13:45:09 -0400 Subject: [PATCH] Using unsigned int for loop --- src/openalpr/detection/detector.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openalpr/detection/detector.cpp b/src/openalpr/detection/detector.cpp index a816fd8..df432e8 100644 --- a/src/openalpr/detection/detector.cpp +++ b/src/openalpr/detection/detector.cpp @@ -145,7 +145,7 @@ namespace alpr - for (int j = 0; j < orderedRegions.size(); j++) + for (unsigned int j = 0; j < orderedRegions.size(); j++) detectedRegions.push_back(orderedRegions[j]); }