Commit 686ee801 authored by Davis King's avatar Davis King

Just added some casts to avoid compiler warnings.

parent b355951d
...@@ -75,7 +75,7 @@ namespace dlib ...@@ -75,7 +75,7 @@ namespace dlib
is_matrix<typename graph_type::type>::value) is_matrix<typename graph_type::type>::value)
{ {
// check that dot() is legal. // check that dot() is legal.
DLIB_ASSERT(get_node_weights().size() == sample.node(i).data.size(), DLIB_ASSERT((unsigned long)get_node_weights().size() == (unsigned long)sample.node(i).data.size(),
"\t void graph_labeler::operator()" "\t void graph_labeler::operator()"
<< "\n\t The size of the node weight vector must match the one in the node." << "\n\t The size of the node weight vector must match the one in the node."
<< "\n\t get_node_weights().size(): " << get_node_weights().size() << "\n\t get_node_weights().size(): " << get_node_weights().size()
...@@ -91,7 +91,7 @@ namespace dlib ...@@ -91,7 +91,7 @@ namespace dlib
is_matrix<typename graph_type::edge_type>::value) is_matrix<typename graph_type::edge_type>::value)
{ {
// check that dot() is legal. // check that dot() is legal.
DLIB_ASSERT(get_edge_weights().size() == sample.node(i).edge(n).size(), DLIB_ASSERT((unsigned long)get_edge_weights().size() == (unsigned long)sample.node(i).edge(n).size(),
"\t void graph_labeler::operator()" "\t void graph_labeler::operator()"
<< "\n\t The size of the edge weight vector must match the one in graph's edge." << "\n\t The size of the edge weight vector must match the one in graph's edge."
<< "\n\t get_edge_weights().size(): " << get_edge_weights().size() << "\n\t get_edge_weights().size(): " << get_edge_weights().size()
......
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