summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorKonstantin Käfer <mail@kkaefer.com>2014-08-12 11:45:30 +0200
committerKonstantin Käfer <mail@kkaefer.com>2014-08-12 11:45:30 +0200
commit6f802642917136eb29d385d31d1817a98b562bbe (patch)
treebbccd9517e1fb430711440077b5c673f31ab3d2a /common
parente4c311a864d522e402b67f5393f57d0f663330e4 (diff)
downloadqtlocation-mapboxgl-6f802642917136eb29d385d31d1817a98b562bbe.tar.gz
remove uv.h dependency from header files
Diffstat (limited to 'common')
-rw-r--r--common/curl_request.cpp2
-rw-r--r--common/glfw_view.hpp4
2 files changed, 1 insertions, 5 deletions
diff --git a/common/curl_request.cpp b/common/curl_request.cpp
index b7e5e8b5cc..88b7712f66 100644
--- a/common/curl_request.cpp
+++ b/common/curl_request.cpp
@@ -1,7 +1,7 @@
#include <mbgl/platform/platform.hpp>
#include <mbgl/platform/request.hpp>
-#include <mbgl/util/uv.hpp>
+#include <mbgl/util/uv_detail.hpp>
#include <mbgl/util/std.hpp>
#include <queue>
diff --git a/common/glfw_view.hpp b/common/glfw_view.hpp
index efef3431a9..d2f6872fc7 100644
--- a/common/glfw_view.hpp
+++ b/common/glfw_view.hpp
@@ -9,8 +9,6 @@
#endif
#include <GLFW/glfw3.h>
-#include <uv.h>
-
class GLFWView : public mbgl::View {
public:
GLFWView(bool fullscreen = false);
@@ -43,8 +41,6 @@ public:
double last_click = -1;
GLFWwindow *window = nullptr;
-
- uv_loop_t *loop = nullptr;
};
#endif