Changelog and version in .hpp for v1.7.1

This commit is contained in:
Jose Luis Blanco-Claraco
2025-03-15 11:08:16 +01:00
parent dc360e84eb
commit 9a653cb243
2 changed files with 4 additions and 1 deletions

View File

@@ -1,3 +1,6 @@
# nanoflann 1.7.1: Released Mar 15, 2025
- ResultSets::worstDist(): Fix a potential access to negative index in array (did not happen in practice, but static analysis tools correctly detected this possibility).
# nanoflann 1.7.0: Released Feb 3, 2025
- ResultSets::worstDist(): clarify the meaning of its return value, and made to return the actual worst distance in the found set (only if set is full)

View File

@@ -61,7 +61,7 @@
#include <vector>
/** Library version: 0xMmP (M=Major,m=minor,P=patch) */
#define NANOFLANN_VERSION 0x170
#define NANOFLANN_VERSION 0x171
// Avoid conflicting declaration of min/max macros in Windows headers
#if !defined(NOMINMAX) && \