summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormatthewsotoudeh <matthewsot@outlook.com>2014-11-28 00:28:50 -0800
committermatthewsotoudeh <matthewsot@outlook.com>2014-11-28 00:28:50 -0800
commitf0cccef73cd7fa4ad6422f013cd18282014d1085 (patch)
treea7d31e746061cec16e79135c2b73bb9fbb874082
parente5731e2dcc3c1b0f977d30194f25076c6c05ff98 (diff)
disabled automatic unwrapping of types
-rw-r--r--SharpSwift/SharpSwift/Converters/TypeParser.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/SharpSwift/SharpSwift/Converters/TypeParser.cs b/SharpSwift/SharpSwift/Converters/TypeParser.cs
index f1bf2de..d7be179 100644
--- a/SharpSwift/SharpSwift/Converters/TypeParser.cs
+++ b/SharpSwift/SharpSwift/Converters/TypeParser.cs
@@ -10,7 +10,8 @@ namespace SharpSwift.Converters
/// <param name="typeName">The C# type's identifier as a string</param>
/// <param name="implyUnwrapped">If true, unwraps the type with an ! at the end</param>
/// <returns>The Swift equivilant type as a string</returns>
- private static string Type(string typeName, bool implyUnwrapped = true)
+ //TODO: figure out the unwrapping already
+ private static string Type(string typeName, bool implyUnwrapped = false)
{
switch (typeName)
{
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback