Skip to content

Commit 077f230

Browse files
committed
Merge remote-tracking branch 'mariusmuja/master'
2 parents bf0b730 + b8a442f commit 077f230

File tree

4 files changed

+559
-3
lines changed

4 files changed

+559
-3
lines changed

src/cpp/flann/algorithms/hierarchical_clustering_index.h

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,10 @@
3737
#include <cassert>
3838
#include <limits>
3939
#include <cmath>
40-
#include <stdint.h>
40+
41+
#ifndef SIZE_MAX
42+
#define SIZE_MAX ((size_t) -1)
43+
#endif
4144

4245
#include "flann/general.h"
4346
#include "flann/algorithms/nn_index.h"

src/cpp/flann/algorithms/lsh_index.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ struct LshIndexParams : public IndexParams
6969
};
7070

7171
/**
72-
* Randomized kd-tree index
72+
* Locality-sensitive hashing index
7373
*
74-
* Contains the k-d trees and other information for indexing a set of points
74+
* Contains the tables and other information for indexing a set of points
7575
* for nearest-neighbor matching.
7676
*/
7777
template<typename Distance>

0 commit comments

Comments
 (0)