Make VMap::find_nearest return -1 when empty
This commit is contained in:
parent
7989149b91
commit
3057b19daa
@ -142,6 +142,9 @@ public:
|
||||
}
|
||||
|
||||
int find_nearest(const T &p_val) const {
|
||||
if (_cowdata.is_empty()) {
|
||||
return -1;
|
||||
}
|
||||
bool exact;
|
||||
return _find(p_val, exact);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user