mirror of https://github.com/davisking/dlib.git
remove unused variable in edge_list_graphs.h (#486)
This commit is contained in:
parent
537354805d
commit
1795bdb499
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue