From 885bd2e8a7319e792a69639149dba6a52b633649 Mon Sep 17 00:00:00 2001 From: Serge Dikiy Date: Thu, 27 Sep 2012 20:59:52 +0300 Subject: [PATCH] fix windows build --- src/core/qgis.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/qgis.h b/src/core/qgis.h index 94253ba7c6f..990114a3f78 100644 --- a/src/core/qgis.h +++ b/src/core/qgis.h @@ -169,7 +169,7 @@ inline bool doubleNearSig( double a, double b, int significantDigits = 10 ) double br = frexp( b, &bexp ); return aexp == bexp && - round( ar * pow( 10, significantDigits ) ) == round( br * pow( 10, significantDigits ) ) ; + ceil( ar * pow( 10.0, significantDigits ) ) == ceil( br * pow( 10.0, significantDigits ) ) ; } /** Wkt string that represents a geographic coord sys