From 107570e6288d266825724010a6f0149eaaac40db Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Wed, 21 Sep 2016 12:01:43 +0200 Subject: many: remove compat/pi-constant.hpp With -D_USE_MATH_DEFINES MSVC defines the standard M_PI and friends. Since this preprocessor definition is now always passed as part of the build system for MSVC. We can use M_PI as if on a mission. --- logic/tracker.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'logic/tracker.cpp') diff --git a/logic/tracker.cpp b/logic/tracker.cpp index 3a8df56e..f404e8e0 100644 --- a/logic/tracker.cpp +++ b/logic/tracker.cpp @@ -24,6 +24,9 @@ # include #endif +constexpr double Tracker::r2d; +constexpr double Tracker::d2r; + Tracker::Tracker(Mappings &m, SelectedLibraries &libs, TrackLogger &logger) : m(m), libs(libs), -- cgit v1.2.3