Skip to content

Commit

Permalink
Fix warning with LLVM 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
danielctull committed May 2, 2011
1 parent 6219383 commit 1002f7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Automated Setup/NSManagedObject+DCTAutomatedSync.m
Expand Up @@ -60,7 +60,7 @@ - (void)dct_syncWithDictionary:(NSDictionary *)dictionary {
return;
}

NSManagedObject<DCTManagedObjectAutomatedSync> *syncSelf = self;
NSManagedObject<DCTManagedObjectAutomatedSync> *syncSelf = (NSManagedObject<DCTManagedObjectAutomatedSync> *)self;

DCTManagedObjectAutomatedSyncStatus syncStatus = DCTManagedObjectAutomatedSyncStatusNil;

Expand Down

0 comments on commit 1002f7a

Please sign in to comment.