diff options
Diffstat (limited to 'test/src')
-rw-r--r-- | test/src/mbgl/test/map_adapter.hpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/src/mbgl/test/map_adapter.hpp b/test/src/mbgl/test/map_adapter.hpp index 67abea953d..5bdab1d164 100644 --- a/test/src/mbgl/test/map_adapter.hpp +++ b/test/src/mbgl/test/map_adapter.hpp @@ -12,11 +12,10 @@ class MapAdapter : public Map { public: explicit MapAdapter(RendererFrontend& frontend, MapObserver& observer, - float ratio, std::shared_ptr<FileSource> fileSource, Scheduler& scheduler, const MapOptions& options) - : Map(std::make_unique<Map::Impl>(frontend, observer, scheduler, ratio, std::move(fileSource), options)) {} + : Map(std::make_unique<Map::Impl>(frontend, observer, scheduler, std::move(fileSource), options)) {} }; } // namespace mbgl |