1
0
mirror of https://github.com/qgis/QGIS.git synced 2025-03-30 00:04:11 -04:00

fix windows build

This commit is contained in:
Serge Dikiy 2012-09-27 20:59:52 +03:00
parent 5d7b3f2f1f
commit 885bd2e8a7

@ -169,7 +169,7 @@ inline bool doubleNearSig( double a, double b, int significantDigits = 10 )
double br = frexp( b, &bexp ); double br = frexp( b, &bexp );
return aexp == 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 /** Wkt string that represents a geographic coord sys