From 9480e372f146e418e8cba1c62bc2a8a44f0f9f8d Mon Sep 17 00:00:00 2001 From: Sam Dean Date: Fri, 23 Dec 2016 11:06:09 +0000 Subject: [PATCH] Add an override to cs_typeName which deals with String explicitly. --- Sources/Internal/Functions.swift | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Sources/Internal/Functions.swift b/Sources/Internal/Functions.swift index 68ae73e..3510777 100644 --- a/Sources/Internal/Functions.swift +++ b/Sources/Internal/Functions.swift @@ -86,3 +86,8 @@ internal func cs_typeName(_ name: String?) -> String { return "<\(name ?? "unknown")>" } + +internal func cs_typeName(_ name: String) -> String { + + return "<\(name)>" +}