Start fixing Windows build issues
This commit is contained in:
parent
6b2826050b
commit
449720c858
1 changed files with 8 additions and 0 deletions
|
@ -137,6 +137,14 @@ public:
|
|||
|
||||
bool IsEqual2D(const Point3D& a) const; // equality check in X,Y only
|
||||
bool HasElevation() const; // does point have elevation data?
|
||||
|
||||
#ifdef _MSC_VER
|
||||
double round(double d)
|
||||
{
|
||||
return floor(d + 0.5);
|
||||
}
|
||||
#endif
|
||||
|
||||
};
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue