Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
qgis::make_unique -> std::make_unique
- Loading branch information
Showing
with
1 addition
and
1 deletion.
-
+1
−1
tests/src/analysis/testqgsprocessingalgs.cpp
|
@@ -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; |
|
|