Skip to content

Commit

Permalink
fix windows build
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@14688 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed Nov 15, 2010
1 parent 424424c commit 98ea99a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/qgis.h
Expand Up @@ -30,7 +30,7 @@
#ifdef WIN32
#include <float.h>
#define isnan(f) _isnan(f)
#define isinf(f) (!_isfinite(f) && !_isnan(f))
#define isinf(f) (!_finite(f) && !_isnan(f))
#endif

/** \ingroup core
Expand Down

0 comments on commit 98ea99a

Please sign in to comment.