Use C++ <cmath> not C <math.h>

.. it clashes, and also its deprecated for C++ sources
This commit is contained in:
Mark Liversedge
2014-12-25 20:38:18 +00:00
parent 894cb6fe23
commit a3c7bc41be
69 changed files with 96 additions and 96 deletions

View File

@@ -24,7 +24,7 @@
// use stc strtod to bypass Qt toDouble() issues
#include <stdlib.h>
#include <math.h>
#include <cmath>
FitlogParser::FitlogParser (RideFile* rideFile, QList<RideFile*> *rides)
: rideFile(rideFile), rides(rides)