Browse Source

Merge pull request #5854 from adrianschroeter/master

fix compile with glibc 2.26
QGC4.4
Gus Grubba 8 years ago committed by GitHub
parent
commit
b83e681620
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      src/QGCGeo.h

5
src/QGCGeo.h

@ -20,11 +20,6 @@ @@ -20,11 +20,6 @@
#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,
* North, and Down components in meters.

Loading…
Cancel
Save