From 6a0e94905056c9a68ac5b865c0426ae6b75440f3 Mon Sep 17 00:00:00 2001 From: Tiago Costa Date: Tue, 1 Oct 2024 21:19:01 -0300 Subject: [PATCH] Parameter names in local_file_request.hpp --- .../default/include/mbgl/storage/local_file_request.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/platform/default/include/mbgl/storage/local_file_request.hpp b/platform/default/include/mbgl/storage/local_file_request.hpp index 1c285b774f9..0d342695422 100644 --- a/platform/default/include/mbgl/storage/local_file_request.hpp +++ b/platform/default/include/mbgl/storage/local_file_request.hpp @@ -8,8 +8,8 @@ template class ActorRef; class FileSourceRequest; -void requestLocalFile(const std::string&, - const ActorRef&, - const std::optional>& = std::nullopt); +void requestLocalFile(const std::string& path, + const ActorRef& req, + const std::optional>& dataRange = std::nullopt); } // namespace mbgl