diff --git a/map/gps_track.cpp b/map/gps_track.cpp index 6dd60ee290..3f6fe93ba5 100644 --- a/map/gps_track.cpp +++ b/map/gps_track.cpp @@ -125,7 +125,7 @@ void GpsTrack::ScheduleTask() { lock_guard lg(m_threadGuard); - if (m_thread.get_id() == thread::id()) + if (m_thread.get_id() == std::thread::id()) { m_thread = threads::SimpleThread([this]() { diff --git a/map/gps_track.hpp b/map/gps_track.hpp index b3e87c6853..fe713c7962 100644 --- a/map/gps_track.hpp +++ b/map/gps_track.hpp @@ -8,7 +8,6 @@ #include "std/condition_variable.hpp" #include "std/mutex.hpp" -#include "std/thread.hpp" #include "std/unique_ptr.hpp" class GpsTrack final