Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix windows build
  • Loading branch information
sdikiy committed Sep 27, 2012
1 parent 5d7b3f2 commit 885bd2e
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 885bd2e

Please sign in to comment.