Skip to content

Commit

Permalink
Merge pull request #251 from sdikiy/work
Browse files Browse the repository at this point in the history
fix windows build
  • Loading branch information
jef-n committed Sep 27, 2012
2 parents 2dfa77c + 885bd2e commit 28fc9d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/qgis.h
Expand Up @@ -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
Expand Down

0 comments on commit 28fc9d0

Please sign in to comment.