Silence clang tidy warning

This commit is contained in:
Nyall Dawson 2024-04-22 15:30:52 +10:00
parent 4fbada39a5
commit afbedeae25

View File

@ -675,7 +675,7 @@ QVariantMap QgsProcessingModelAlgorithm::processAlgorithm( const QVariantMap &pa
break; break;
} }
if ( feedback ) if ( feedback )
feedback->pushDebugInfo( QObject::tr( "Model processed OK. Executed %n algorithm(s) total in %1 s.", nullptr, countExecuted ).arg( totalTime.elapsed() / 1000.0 ) ); feedback->pushDebugInfo( QObject::tr( "Model processed OK. Executed %n algorithm(s) total in %1 s.", nullptr, countExecuted ).arg( static_cast< double >( totalTime.elapsed() ) / 1000.0 ) );
mResults = finalResults; mResults = finalResults;
mResults.insert( QStringLiteral( "CHILD_RESULTS" ), childResults ); mResults.insert( QStringLiteral( "CHILD_RESULTS" ), childResults );