Skip to content

Commit

Permalink
Merge pull request #216 from BoltsFramework/nlutsenko.warnings
Browse files Browse the repository at this point in the history
Fix Xcode 7.3 warnings.
  • Loading branch information
nlutsenko committed Jan 11, 2016
2 parents 0628d56 + 2d351bc commit b1a6347
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
6 changes: 4 additions & 2 deletions Bolts.xcodeproj/xcshareddata/xcschemes/Bolts-iOS.xcscheme
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
buildForRunning = "YES"
buildForProfiling = "YES"
buildForArchiving = "YES"
buildForAnalyzing = "YES">
buildForAnalyzing = "YES"
hideIssues = "NO">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "81ED94111BE147CF00795F05"
Expand All @@ -25,7 +26,8 @@
buildForRunning = "NO"
buildForProfiling = "NO"
buildForArchiving = "NO"
buildForAnalyzing = "YES">
buildForAnalyzing = "YES"
hideIssues = "NO">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "8E8C8EE817F23D1D00E3F1C7"
Expand Down
2 changes: 1 addition & 1 deletion Bolts/Common/BFCancellationToken.m
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

@interface BFCancellationToken ()

@property (atomic, assign, getter=isCancellationRequested) BOOL cancellationRequested;
@property (nonatomic, assign, getter=isCancellationRequested) BOOL cancellationRequested;
@property (nonatomic, strong) NSMutableArray *registrations;
@property (nonatomic, strong) NSObject *lock;
@property (nonatomic) BOOL disposed;
Expand Down
6 changes: 3 additions & 3 deletions Bolts/Common/BFTask.m
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ @interface BFTask () {
NSException *_exception;
}

@property (atomic, assign, readwrite, getter=isCancelled) BOOL cancelled;
@property (atomic, assign, readwrite, getter=isFaulted) BOOL faulted;
@property (atomic, assign, readwrite, getter=isCompleted) BOOL completed;
@property (nonatomic, assign, readwrite, getter=isCancelled) BOOL cancelled;
@property (nonatomic, assign, readwrite, getter=isFaulted) BOOL faulted;
@property (nonatomic, assign, readwrite, getter=isCompleted) BOOL completed;

@property (nonatomic, strong) NSObject *lock;
@property (nonatomic, strong) NSCondition *condition;
Expand Down

0 comments on commit b1a6347

Please sign in to comment.