Fix formatting

This commit is contained in:
sewe2000 2025-08-06 14:17:37 +02:00 committed by github-actions[bot]
parent 84b3ff4930
commit 495132fc79

View File

@ -1160,10 +1160,13 @@ bool QgsPointLocator::rebuildIndex( int maxFeaturesToIndex )
} }
QgsPointLocator_Stream stream( dataList ); QgsPointLocator_Stream stream( dataList );
try { try
{
mRTree.reset( RTree::createAndBulkLoadNewRTree( RTree::BLM_STR, stream, *mStorage, fillFactor, indexCapacity, mRTree.reset( RTree::createAndBulkLoadNewRTree( RTree::BLM_STR, stream, *mStorage, fillFactor, indexCapacity,
leafCapacity, dimension, variant, indexId ) ); leafCapacity, dimension, variant, indexId ) );
} catch (const std::exception& e) { }
catch ( const std::exception &e )
{
QgsDebugError( QStringLiteral( "An exception has occurred during the creation of RTree: %1" ).arg( e.what() ) ); QgsDebugError( QStringLiteral( "An exception has occurred during the creation of RTree: %1" ).arg( e.what() ) );
destroyIndex(); destroyIndex();
return false; return false;