Skip to content

Commit 40d1d9a

Browse files
committed
Merge pull request #30 from thinkalike-dev/master
Bugfix: for Release builds
2 parents 53ecee0 + 6ccce38 commit 40d1d9a

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

JSONHelper.xcodeproj/xcshareddata/xcschemes/JSONHelper-iOS.xcscheme

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
4141
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
4242
shouldUseLaunchSchemeArgsEnv = "YES"
43-
buildConfiguration = "Debug">
43+
buildConfiguration = "Release">
4444
<Testables>
4545
<TestableReference
4646
skipped = "NO">

JSONHelper/JSONHelper.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ infix operator <-- { associativity right precedence 150 }
4242
// For optionals.
4343
public func <-- <T>(inout property: T?, value: AnyObject?) -> T? {
4444
var newValue: T?
45+
""
4546
if let unwrappedValue: AnyObject = value {
4647
// We unwrapped the given value successfully, try to convert.
4748
if let convertedValue = unwrappedValue as? T {

0 commit comments

Comments
 (0)