From 04fba1e01f61865f5af516cf433ab618df55737c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Konstantin=20K=C3=A4fer?= Date: Thu, 13 Jul 2017 16:22:14 +0200 Subject: [core] add unused default template parameter to keep Xcode 9's Clang from crashing --- test/algorithm/update_renderables.test.cpp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'test') diff --git a/test/algorithm/update_renderables.test.cpp b/test/algorithm/update_renderables.test.cpp index 26b7cf7f72..d23e1cc1ac 100644 --- a/test/algorithm/update_renderables.test.cpp +++ b/test/algorithm/update_renderables.test.cpp @@ -100,12 +100,18 @@ auto createTileDataFn(ActionLog& log, T& dataTiles) { }; } +// Unused template argument to fix Clang crash +// See https://github.com/mapbox/mapbox-gl-native/pull/9501 +template auto retainTileDataFn(ActionLog& log) { return [&](auto& tileData, Resource::Necessity necessity) { log.emplace_back(RetainTileDataAction{ tileData.tileID, necessity }); }; } +// Unused template argument to fix Clang crash +// See https://github.com/mapbox/mapbox-gl-native/pull/9501 +template auto renderTileFn(ActionLog& log) { return [&](const auto& id, auto& tileData) { log.emplace_back(RenderTileAction{ id, tileData }); -- cgit v1.2.1