Commit 0243b005 authored by Davis King's avatar Davis King

Changed code to avoid a compiler warning

parent a80d9d57
...@@ -143,7 +143,7 @@ namespace dlib ...@@ -143,7 +143,7 @@ namespace dlib
for (unsigned long i = 0; i < x.size(); ++i) for (unsigned long i = 0; i < x.size(); ++i)
{ {
node_states.set_size(std::min(fe.order(),i) + 1); node_states.set_size(std::min(fe.order(),i) + 1);
for (unsigned long j = 0; j < node_states.size(); ++j) for (unsigned long j = 0; j < (unsigned long)node_states.size(); ++j)
node_states(j) = y[i-j]; node_states(j) = y[i-j];
if (fe.reject_labeling(x, node_states, i)) if (fe.reject_labeling(x, node_states, i))
......
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