1
1
mirror of https://github.com/github/semantic.git synced 2024-12-24 23:42:31 +03:00

Remove a bogus default case.

This commit is contained in:
Rob Rix 2015-11-05 10:34:27 -05:00
parent c6baaf677d
commit 224f636f9b

View File

@ -240,9 +240,6 @@ extension Free {
case let .Roll(annotation, .Keyed(k)):
return Location.variadic(k, weave, { Free.Roll(annotation, .Keyed($0)) })
default:
fatalError("unimplemented")
}
}
return Location.explore(weave)(self)