Commit 1c1f0e67 authored by Davis King's avatar Davis King

Minor changes to avoid compiler warnings.

parent ad3802d5
...@@ -711,7 +711,7 @@ namespace dlib ...@@ -711,7 +711,7 @@ namespace dlib
{ {
using namespace impl; using namespace impl;
std::deque<std::pair<unsigned long, unsigned long> > parts; std::deque<std::pair<unsigned long, unsigned long> > parts;
parts.push_back(std::make_pair(0, samples.size())); parts.push_back(std::make_pair(0, (unsigned long)samples.size()));
impl::regression_tree tree; impl::regression_tree tree;
......
...@@ -215,7 +215,7 @@ namespace dlib ...@@ -215,7 +215,7 @@ namespace dlib
unsigned int thickness unsigned int thickness
) )
{ {
for (int i = 0; i < thickness; ++i) for (unsigned int i = 0; i < thickness; ++i)
{ {
if ((i%2)==0) if ((i%2)==0)
draw_rectangle(c,shrink_rect(rect,(i+1)/2),val); draw_rectangle(c,shrink_rect(rect,(i+1)/2),val);
......
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