Fixes release mode compiler error.

This commit is contained in:
Krunoslav Zaher 2015-06-14 19:28:27 +02:00
parent a631010071
commit 6340563c29
1 changed files with 2 additions and 0 deletions

View File

@ -25,6 +25,8 @@ struct Recorded<Element : Equatable> : Printable, Equatable {
return boxedValue.value
default:
assert(false)
let element: Element! = nil
return element!
}
}
}