SimpleDBSCAN icon indicating copy to clipboard operation
SimpleDBSCAN copied to clipboard

Warning

Open Lionward opened this issue 2 years ago • 0 comments

int Run(TVector* V, const uint dim, const Float eps, const uint min, const DistanceFunc& disfunc = [](const T& t1 , const T& t2 )->Float { return 0; });

the following ling produces a warning of unused variable, removing the t1 and t2 variables would solve the warning:

Run(TVector* V, const uint dim, const Float eps, const uint min, const DistanceFunc& disfunc = [](const T& , const T& )->Float { return 0; });

Lionward avatar Oct 31 '23 19:10 Lionward