summaryrefslogtreecommitdiff
path: root/src/mbgl/style/class_dictionary.cpp
diff options
context:
space:
mode:
authorThiago Marcos P. Santos <thiago@mapbox.com>2015-08-31 14:40:09 +0300
committerThiago Marcos P. Santos <thiago@mapbox.com>2015-12-01 11:49:01 +0200
commitd515f84caf9e1439378f65d7f9e8a88b9809e8ed (patch)
treee7f333d590e7240a272b17390d5917716773b120 /src/mbgl/style/class_dictionary.cpp
parentff4783847486d414052803ea1a50f6806513967a (diff)
downloadqtlocation-mapboxgl-d515f84caf9e1439378f65d7f9e8a88b9809e8ed.tar.gz
[core] Remove unused libuv includes
Diffstat (limited to 'src/mbgl/style/class_dictionary.cpp')
-rw-r--r--src/mbgl/style/class_dictionary.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/mbgl/style/class_dictionary.cpp b/src/mbgl/style/class_dictionary.cpp
index ba7c0d55be..021f791adc 100644
--- a/src/mbgl/style/class_dictionary.cpp
+++ b/src/mbgl/style/class_dictionary.cpp
@@ -1,14 +1,12 @@
#include <mbgl/style/class_dictionary.hpp>
-#include <uv.h>
+#include <pthread.h>
namespace mbgl {
ClassDictionary::ClassDictionary() {}
ClassDictionary &ClassDictionary::Get() {
- // Note: We should eventually switch to uv_key_* functions, but libuv 0.10 doesn't have these
- // yet. Instead, we're using the pthread functions directly for now.
static pthread_once_t store_once = PTHREAD_ONCE_INIT;
static pthread_key_t store_key;