Skip to content

Enable implicit atomicity on properties warning. #67

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

Merged
merged 1 commit into from
Aug 21, 2015
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
1 change: 1 addition & 0 deletions Configurations/Shared/Warnings.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ CLANG_WARN_ENUM_CONVERSION = YES
CLANG_WARN_UNREACHABLE_CODE = YES
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES
CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION = YES
CLANG_WARN_OBJC_IMPLICIT_ATOMIC_PROPERTIES = YES

// Errors
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR
Expand Down
4 changes: 2 additions & 2 deletions Parse/Internal/User/PFUserPrivate.h
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ extern NSString *const PFUserCurrentUserKeychainItemName;
// to the currentUser singleton and disk object
@property (nonatomic, assign) BOOL isCurrentUser;

@property (strong, readonly) NSMutableDictionary *authData;
@property (strong, readonly) NSMutableSet *linkedServiceNames;
@property (nonatomic, strong, readonly) NSMutableDictionary *authData;
@property (nonatomic, strong, readonly) NSMutableSet *linkedServiceNames;
@property (nonatomic, assign) BOOL isLazy;

- (BOOL)_isAuthenticatedWithCurrentUser:(PFUser *)currentUser;
Expand Down