Skip to content

Commit

Permalink
Don't skip call in build without asserts
Browse files Browse the repository at this point in the history
  • Loading branch information
dvdkon authored and wonder-sk committed Dec 3, 2024
1 parent d47ad7d commit bf2a428
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/core/pointcloud/qgscopcpointcloudindex.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,8 @@ bool QgsCopcPointCloudIndex::hasNode( const QgsPointCloudNodeId &n ) const

QgsPointCloudNode QgsCopcPointCloudIndex::getNode( const QgsPointCloudNodeId &id ) const
{
Q_ASSERT( fetchNodeHierarchy( id ) );
bool nodeFound = fetchNodeHierarchy( id );
Q_ASSERT( nodeFound );

qint64 pointCount;
{
Expand Down

0 comments on commit bf2a428

Please sign in to comment.