From 7f80e8f7b7879739fee62161796df15aa4316f33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20T=C5=AFma?= Date: Wed, 12 Jul 2017 21:26:00 +0200 Subject: [PATCH] Cosmetics --- src/datum.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/datum.cpp b/src/datum.cpp index 7c9dfd90..1eb0b0a3 100644 --- a/src/datum.cpp +++ b/src/datum.cpp @@ -89,7 +89,7 @@ Coordinates Datum::toWGS84(const Coordinates &c) const { if (_ellipsoid.radius() == WGS84_RADIUS && _ellipsoid.flattening() == WGS84_FLATTENING - && _dx == 0 && _dy == 0 && _dz == 0) + && _dx == 0.0 && _dy == 0.0 && _dz == 0.0) return c; double rlat = deg2rad(c.lat());