Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix compile error on OSX
git-svn-id: http://svn.osgeo.org/qgis/trunk@10256 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed Mar 2, 2009
1 parent 3b51848 commit 599a16b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/plugins/interpolation/qgsinterpolator.cpp
Expand Up @@ -18,7 +18,11 @@
#include "qgsinterpolator.h"
#include "qgsvectordataprovider.h"
#include "qgsgeometry.h"
#ifndef Q_OS_MACX
#include <cmath>
#else
#include <math.h>
#endif
#ifdef _MSC_VER
#include <float.h>
#define isnan(f) _isnan(f)
Expand Down

0 comments on commit 599a16b

Please sign in to comment.