Skip to content

Commit

Permalink
fix QgsPointCloudIndex::nodePointCount
Browse files Browse the repository at this point in the history
  • Loading branch information
NEDJIMAbelgacem authored and wonder-sk committed Feb 3, 2022
1 parent e3d3060 commit 4755940
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/pointcloud/qgspointcloudindex.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ int QgsPointCloudIndex::nodePointCount( const IndexedPointCloudNode &n )
int count = -1;
mHierarchyMutex.lock();
if ( mHierarchy.contains( n ) )
count = mHierarchy.contains( n );
count = mHierarchy.value( n );
mHierarchyMutex.unlock();
return count;
}

0 comments on commit 4755940

Please sign in to comment.