Fix internal spatialindex build

This commit is contained in:
Nyall Dawson 2025-09-24 09:29:22 +10:00
parent bd0ebbfe7d
commit bc9689d09f
2 changed files with 3 additions and 1 deletions

View File

@ -40,7 +40,7 @@ private:
public: public:
LeafQuery(); LeafQuery();
~LeafQuery() { } ~LeafQuery();
void getNextEntry( const SpatialIndex::IEntry& entry, void getNextEntry( const SpatialIndex::IEntry& entry,
SpatialIndex::id_type& nextEntry, SpatialIndex::id_type& nextEntry,
bool& hasNext); bool& hasNext);

View File

@ -33,6 +33,8 @@ LeafQuery::LeafQuery()
} }
LeafQuery::~LeafQuery() = default;
LeafQueryResult get_results(const SpatialIndex::INode* n) LeafQueryResult get_results(const SpatialIndex::INode* n)
{ {
LeafQueryResult result (n->getIdentifier()); LeafQueryResult result (n->getIdentifier());