summaryrefslogtreecommitdiff
path: root/src/mbgl/platform
diff options
context:
space:
mode:
authorThiago Marcos P. Santos <thiago@mapbox.com>2016-07-15 15:01:16 +0300
committerThiago Marcos P. Santos <thiago@mapbox.com>2016-07-16 10:38:42 +0300
commit4a1a7937ae795b46c885fd3edf871fe8cbb2468e (patch)
treebcfd0c424e67d876ed5a61d30eaafede2ad116a5 /src/mbgl/platform
parent5c037f4745e5a9a3c5f5d050c59d39e3f763bb5a (diff)
downloadqtlocation-mapboxgl-4a1a7937ae795b46c885fd3edf871fe8cbb2468e.tar.gz
[core] Move set/get thread names to platform::
Android needs its own implementation.
Diffstat (limited to 'src/mbgl/platform')
-rw-r--r--src/mbgl/platform/log.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mbgl/platform/log.cpp b/src/mbgl/platform/log.cpp
index 0f334ae3e7..b140485dd6 100644
--- a/src/mbgl/platform/log.cpp
+++ b/src/mbgl/platform/log.cpp
@@ -50,7 +50,7 @@ void Log::record(EventSeverity severity, Event event, int64_t code, const std::s
std::stringstream logStream;
- logStream << "{" << util::getCurrentThreadName() << "}";
+ logStream << "{" << platform::getCurrentThreadName() << "}";
logStream << "[" << Enum<Event>::toString(event) << "]";
if (code >= 0) {