mirror of
https://github.com/qgis/QGIS.git
synced 2025-10-06 00:07:29 -04:00
Fix formatting
This commit is contained in:
parent
84b3ff4930
commit
495132fc79
@ -1160,11 +1160,14 @@ bool QgsPointLocator::rebuildIndex( int maxFeaturesToIndex )
|
||||
}
|
||||
|
||||
QgsPointLocator_Stream stream( dataList );
|
||||
try {
|
||||
try
|
||||
{
|
||||
mRTree.reset( RTree::createAndBulkLoadNewRTree( RTree::BLM_STR, stream, *mStorage, fillFactor, indexCapacity,
|
||||
leafCapacity, dimension, variant, indexId ) );
|
||||
} catch (const std::exception& e) {
|
||||
QgsDebugError(QStringLiteral("An exception has occurred during the creation of RTree: %1").arg(e.what()));
|
||||
}
|
||||
catch ( const std::exception &e )
|
||||
{
|
||||
QgsDebugError( QStringLiteral( "An exception has occurred during the creation of RTree: %1" ).arg( e.what() ) );
|
||||
destroyIndex();
|
||||
return false;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user