Commit 1795bdb4 authored by ebroglio's avatar ebroglio Committed by Davis E. King

remove unused variable in edge_list_graphs.h (#486)

parent 53735480
...@@ -286,7 +286,7 @@ namespace dlib ...@@ -286,7 +286,7 @@ namespace dlib
// Hold the length for the longest edge for each node. Initially they are all infinity. // Hold the length for the longest edge for each node. Initially they are all infinity.
std::vector<double> worst_dists(samples.size(), std::numeric_limits<double>::infinity()); std::vector<double> worst_dists(samples.size(), std::numeric_limits<double>::infinity());
std::vector<sample_pair>::iterator begin_i, end_i, begin_j, end_j, itr; std::vector<sample_pair>::iterator begin_i, end_i, begin_j, end_j;
begin_i = edges.begin(); begin_i = edges.begin();
end_i = begin_i + k; end_i = begin_i + k;
......
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