remove unused variable in edge_list_graphs.h (#486)

This commit is contained in:
ebroglio 2017-03-18 20:17:52 +01:00 committed by Davis E. King
parent 537354805d
commit 1795bdb499
1 changed files with 1 additions and 1 deletions

View File

@ -286,7 +286,7 @@ namespace dlib
// 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<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();
end_i = begin_i + k;