diff options
author | Konstantin Käfer <mail@kkaefer.com> | 2015-01-26 06:16:21 -0800 |
---|---|---|
committer | Konstantin Käfer <mail@kkaefer.com> | 2015-02-04 10:49:08 +0100 |
commit | 12341ce0ee54952173b5a451074bb151b0ae40c9 (patch) | |
tree | 148b148d223cd56248810e2a3d8b7ebcc03ec48f | |
parent | d53ddb34688948ed8bc66ea074cda6b0feb1ad1a (diff) | |
download | qtlocation-mapboxgl-12341ce0ee54952173b5a451074bb151b0ae40c9.tar.gz |
add missing headers
-rw-r--r-- | include/mbgl/storage/default/request.hpp | 1 | ||||
-rw-r--r-- | platform/default/sqlite3.cpp | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/include/mbgl/storage/default/request.hpp b/include/mbgl/storage/default/request.hpp index 9253378009..528a49f748 100644 --- a/include/mbgl/storage/default/request.hpp +++ b/include/mbgl/storage/default/request.hpp @@ -7,6 +7,7 @@ #include <mbgl/util/noncopyable.hpp> #include <functional> +#include <memory> typedef struct uv_async_s uv_async_t; typedef struct uv_loop_s uv_loop_t; diff --git a/platform/default/sqlite3.cpp b/platform/default/sqlite3.cpp index fda9784607..6a27314c56 100644 --- a/platform/default/sqlite3.cpp +++ b/platform/default/sqlite3.cpp @@ -2,6 +2,7 @@ #include <sqlite3.h> #include <cassert> +#include <cstring> // Check sqlite3 library version. const static bool sqliteVersionCheck = []() { |