Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Xcode 7.3 warnings. #216

Merged
merged 1 commit into from
Jan 11, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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