Skip to content

Commit

Permalink
>= Xcode 4.6 compatibility, ARC warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
alanzeino committed Mar 20, 2013
1 parent ec93e51 commit 2894d32
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions TwitterKit.xcodeproj/project.pbxproj
Expand Up @@ -180,6 +180,7 @@
054089BB1423EA800096B897 /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 0460;
ORGANIZATIONNAME = "High Order Bit";
};
buildConfigurationList = 054089BE1423EA800096B897 /* Build configuration list for PBXProject "TwitterKit" */;
Expand Down Expand Up @@ -265,6 +266,7 @@
DSTROOT = /tmp/TwitterKit.dst;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "TwitterKit/TwitterKit-Prefix.pch";
GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
OTHER_LDFLAGS = "-ObjC";
PRODUCT_NAME = "$(TARGET_NAME)";
SKIP_INSTALL = YES;
Expand All @@ -277,6 +279,7 @@
DSTROOT = /tmp/TwitterKit.dst;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "TwitterKit/TwitterKit-Prefix.pch";
GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
OTHER_LDFLAGS = "-ObjC";
PRODUCT_NAME = "$(TARGET_NAME)";
SKIP_INSTALL = YES;
Expand Down
2 changes: 1 addition & 1 deletion TwitterKit/TKTwitterWebFlowAuthenticator.m
Expand Up @@ -270,7 +270,7 @@ - (NSString *)oauthAuthorizationHeader:(NSString *)oauthSignature
NSMutableArray *chunks = [NSMutableArray array];

// First add all the base components.
[chunks addObject:[NSString stringWithString:@"OAuth realm=\"\""]];
[chunks addObject:@"OAuth realm=\"\""];

for (NSString *part in components) {
NSString *value = [components valueForKey:part];
Expand Down
2 changes: 1 addition & 1 deletion TwitterKit/oauth/TKTwitterOAuthSignature.m
Expand Up @@ -163,7 +163,7 @@ - (NSString *)oauthAuthorizationHeader:(NSString *)oauthSignature
NSMutableArray *chunks = [NSMutableArray array];

// First add all the base components.
[chunks addObject:[NSString stringWithString:@"OAuth realm=\"\""]];
[chunks addObject:@"OAuth realm=\"\""];

for (NSString *key in components) {
NSString *value = [components valueForKey:key];
Expand Down

0 comments on commit 2894d32

Please sign in to comment.