diff options
Diffstat (limited to 'geography/qgis/patches/patch-ac')
-rw-r--r-- | geography/qgis/patches/patch-ac | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/geography/qgis/patches/patch-ac b/geography/qgis/patches/patch-ac deleted file mode 100644 index f986743ab9c..00000000000 --- a/geography/qgis/patches/patch-ac +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-ac,v 1.1.1.1 2010/08/27 11:43:05 adam Exp $ - ---- src/analysis/interpolation/qgstininterpolator.cpp.orig 2009-11-22 14:41:00.000000000 +0000 -+++ src/analysis/interpolation/qgstininterpolator.cpp -@@ -195,7 +195,7 @@ int QgsTINInterpolator::insertData( QgsF - return 3; - } - attributeValue = att_it.value().toDouble( &attributeConversionOk ); -- if ( !attributeConversionOk || isnan( attributeValue ) ) //don't consider vertices with attributes like 'nan' for the interpolation -+ if ( !attributeConversionOk || isnanf( attributeValue ) ) //don't consider vertices with attributes like 'nan' for the interpolation - { - return 4; - } |