Fix for Swift 2.2 compatibility

This commit is contained in:
John Rommel Estropia
2016-01-31 17:23:34 +09:00
parent 7a95267a9c
commit 5137649b78
2 changed files with 19 additions and 19 deletions

View File

@@ -86,7 +86,7 @@ public protocol CoreStoreLogger {
internal func typeName<T>(value: T) -> String {
return "'\(_stdlib_getDemangledTypeName(value))'"
return "'\(String(reflecting: value.dynamicType))'"
}
internal func typeName<T>(value: T.Type) -> String {