diff options
Diffstat (limited to 'bin')
-rw-r--r-- | bin/render.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/bin/render.cpp b/bin/render.cpp index 71f74b043c..26fd06d507 100644 --- a/bin/render.cpp +++ b/bin/render.cpp @@ -6,7 +6,6 @@ #include <mbgl/platform/default/headless_view.hpp> #include <mbgl/platform/default/headless_display.hpp> #include <mbgl/storage/default_file_source.hpp> -#include <mbgl/storage/sqlite_cache.hpp> #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wunknown-pragmas" @@ -65,8 +64,7 @@ int main(int argc, char *argv[]) { using namespace mbgl; util::RunLoop loop; - SQLiteCache cache(cache_file); - DefaultFileSource fileSource(&cache); + DefaultFileSource fileSource(cache_file); // Try to load the token from the environment. if (!token.size()) { |