summaryrefslogtreecommitdiff
path: root/src/mbgl/storage/file_source.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mbgl/storage/file_source.cpp')
-rw-r--r--src/mbgl/storage/file_source.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mbgl/storage/file_source.cpp b/src/mbgl/storage/file_source.cpp
index 5854682771..5f60a05278 100644
--- a/src/mbgl/storage/file_source.cpp
+++ b/src/mbgl/storage/file_source.cpp
@@ -18,7 +18,7 @@ std::shared_ptr<FileSource> FileSource::getSharedFileSource(const ResourceOption
it = it->second.expired() ? fileSources.erase(it) : ++it;
}
- const uint64_t context = reinterpret_cast<uint64_t>(options.platformContext());
+ const auto context = reinterpret_cast<uint64_t>(options.platformContext());
const std::string key = options.baseURL() + '|' + options.accessToken() + '|' + options.cachePath() + '|' + util::toString(context);
std::shared_ptr<mbgl::FileSource> fileSource;