Skip to content

Commit

Permalink
Merge pull request #30 from thinkalike-dev/master
Browse files Browse the repository at this point in the history
Bugfix: for Release builds
  • Loading branch information
isair committed Apr 13, 2015
2 parents 53ecee0 + 6ccce38 commit 40d1d9a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
shouldUseLaunchSchemeArgsEnv = "YES"
buildConfiguration = "Debug">
buildConfiguration = "Release">
<Testables>
<TestableReference
skipped = "NO">
Expand Down
1 change: 1 addition & 0 deletions JSONHelper/JSONHelper.swift
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ infix operator <-- { associativity right precedence 150 }
// For optionals.
public func <-- <T>(inout property: T?, value: AnyObject?) -> T? {
var newValue: T?
""
if let unwrappedValue: AnyObject = value {
// We unwrapped the given value successfully, try to convert.
if let convertedValue = unwrappedValue as? T {
Expand Down

0 comments on commit 40d1d9a

Please sign in to comment.