Remove undocumented and unused constructor of Weighted_Minkowski_distance.

This commit is contained in:
Marc Glisse
2016-12-13 00:29:16 +01:00
parent 1c4554da08
commit e45cb3961b
@@ -68,18 +68,6 @@ namespace CGAL {
//default copy constructor and destructor
Weighted_Minkowski_distance (FT pow, int dim,
const Weight_vector& weights,
const SearchTraits& traits_=SearchTraits())
: traits(traits_),power(pow)
{
CGAL_assertion(power >= FT(0));
CGAL_assertion(dim==weights.size());
for (unsigned int i = 0; i < weights.size(); ++i)
CGAL_assertion(weights[i]>=FT(0));
the_weights = weights;
}
template <class InputIterator>
Weighted_Minkowski_distance (FT pow, int dim,
InputIterator begin,