increase template depth on clang and gcc builds

This commit is contained in:
karenzshea
2016-12-06 09:13:11 -05:00
committed by Patrick Niklaus
parent 0f59b78c02
commit d5904d5756
8 changed files with 12985 additions and 12969 deletions
+6 -7
View File
@@ -164,13 +164,12 @@ function way_function (way, result)
-- speed
if route_speeds[route] then
-- ferries (doesn't cover routes tagged using relations)
result.ignore_in_grid = true
if duration and durationIsValid(duration) then
result.duration = math.max( 1, parseDuration(duration) )
else
result.forward_speed = route_speeds[route]
result.backward_speed = route_speeds[route]
end
if duration and durationIsValid(duration) then
result.duration = math.max( 1, parseDuration(duration) )
else
result.forward_speed = route_speeds[route]
result.backward_speed = route_speeds[route]
end
result.forward_mode = mode.ferry
result.backward_mode = mode.ferry
elseif railway and platform_speeds[railway] then