From 7492a05aa4a9fbf98219341e44e2661287230f6c Mon Sep 17 00:00:00 2001 From: Vedran Burojevic Date: Tue, 16 Aug 2016 22:03:10 +0200 Subject: [PATCH] Fix unboxed Int to String transformation --- Sources/Unbox.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/Unbox.swift b/Sources/Unbox.swift index 92a173d..b64804b 100644 --- a/Sources/Unbox.swift +++ b/Sources/Unbox.swift @@ -341,7 +341,7 @@ extension String: UnboxableRawType { } public static func transformUnboxedInt(unboxedInt: Int) -> String? { - return nil + return String(unboxedInt) } public static func transformUnboxedString(unboxedString: String) -> String? {