Skip to content

Commit

Permalink
Fix build, tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Oct 25, 2017
1 parent 7455c2f commit 63e6cda
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/analysis/raster/qgskde.h
Expand Up @@ -101,7 +101,9 @@ class ANALYSIS_EXPORT QgsKernelDensityEstimation
*/
QgsKernelDensityEstimation( const Parameters &parameters, const QString &outputFile, const QString &outputFormat );

//! QgsKernelDensityEstimation cannot be copied.
QgsKernelDensityEstimation( const QgsKernelDensityEstimation &other ) = delete;
//! QgsKernelDensityEstimation cannot be copied.
QgsKernelDensityEstimation &operator=( const QgsKernelDensityEstimation &other ) = delete;

/**
Expand Down
2 changes: 1 addition & 1 deletion src/core/qgsvectorfilewriter.cpp
Expand Up @@ -2019,7 +2019,7 @@ gdal::ogr_feature_unique_ptr QgsVectorFileWriter::createFeature( const QgsFeatur
// field to not be present at all in the output, and thus on reading to
// have disappeared. #16812
#ifdef OGRNullMarker
OGR_F_SetFieldNull( poFeature, ogrField );
OGR_F_SetFieldNull( poFeature.get(), ogrField );
#endif
continue;
}
Expand Down

0 comments on commit 63e6cda

Please sign in to comment.