Skip to content

Commit

Permalink
qgis::make_unique -> std::make_unique
Browse files Browse the repository at this point in the history
  • Loading branch information
wonder-sk committed Mar 14, 2021
1 parent a2289bb commit ef567b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/src/analysis/testqgsprocessingalgs.cpp
Expand Up @@ -6543,7 +6543,7 @@ void TestQgsProcessingAlgs::rasterize()
QVERIFY( nodePolygons );
nodePolygons->setItemVisibilityChecked( false );

std::unique_ptr< QgsProcessingContext > context = qgis::make_unique< QgsProcessingContext >();
std::unique_ptr< QgsProcessingContext > context = std::make_unique< QgsProcessingContext >();
context->setProject( &project );
QgsProcessingFeedback feedback;
QVariantMap results;
Expand Down

0 comments on commit ef567b1

Please sign in to comment.