Commit 15e79e90 authored by Davis King's avatar Davis King

Fixed a warning about signed/unsigned comparisons.

parent bd4647d1
......@@ -1229,7 +1229,7 @@ namespace dlib
if (detectors.size() == 0)
return;
const int cell_size = detectors[0].get_scanner().get_cell_size();
const unsigned long cell_size = detectors[0].get_scanner().get_cell_size();
// Find the maximum sized filters and also most extreme pyramiding settings used.
unsigned long max_filter_width = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment