From 964d5a4d390c913c7d49508dfb3abfbfba21aa60 Mon Sep 17 00:00:00 2001 From: Vladimir Byko-Ianko Date: Mon, 13 Mar 2017 17:47:38 +0300 Subject: [PATCH] Review fixes. --- map/gps_track.cpp | 2 +- map/gps_track.hpp | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) 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