Commit dcd27daf authored by Adrian Schröter's avatar Adrian Schröter

fix compile with glibc 2.26

The failure got triggered by 3c55e2b0

sincos is not used anymore, so drop the definition
parent a3d372c7
...@@ -20,11 +20,6 @@ ...@@ -20,11 +20,6 @@
#include <QGeoCoordinate> #include <QGeoCoordinate>
/* Safeguard for systems lacking sincos (e.g. Mac OS X Leopard) */
#ifndef sincos
#define sincos(th,x,y) { (*(x))=sin(th); (*(y))=cos(th); }
#endif
/** /**
* @brief Project a geodetic coordinate on to local tangential plane (LTP) as coordinate with East, * @brief Project a geodetic coordinate on to local tangential plane (LTP) as coordinate with East,
* North, and Down components in meters. * North, and Down components in meters.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment