Closed grefab closed 7 years ago
radius_search (in particular this) produces an error in MSVC2017. Seems like MS's implementation of std::upper_bound and std::lower_bound is not able to work with std::pair as comparison element.
std::upper_bound
std::lower_bound
std::pair
Please find the complete error messages here.
Fixed by replacing radius search with nanoflann. Commit
radius_search (in particular this) produces an error in MSVC2017. Seems like MS's implementation of
std::upper_bound
andstd::lower_bound
is not able to work withstd::pair
as comparison element.Please find the complete error messages here.