Skip to content

Commit

Permalink
Use #import instead of @import (arashpayan#246)
Browse files Browse the repository at this point in the history
Use #import instead of @import
  • Loading branch information
rpitting authored and Matthew Sun committed Jan 11, 2017
1 parent 082e53f commit e82c7ca
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Appirater.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
* Copyright 2012 Arash Payan. All rights reserved.
*/

@import Foundation;
@import StoreKit;
#import <Foundation/Foundation.h>
#import <StoreKit/StoreKit.h>
#import "AppiraterDelegate.h"

extern NSString *const kAppiraterFirstUseDate;
Expand Down
4 changes: 2 additions & 2 deletions Appirater.m
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
* Copyright 2012 Arash Payan. All rights reserved.
*/

@import SystemConfiguration;
@import CFNetwork;
#import <SystemConfiguration/SystemConfiguration.h>
#import <CFNetwork/CFNetwork.h>
#import "Appirater.h"
#include <netinet/in.h>

Expand Down
2 changes: 1 addition & 1 deletion AppiraterDelegate.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// Copyright (c) 2012 News.me. All rights reserved.
//

@import Foundation;
#import <Foundation/Foundation.h>

@class Appirater;

Expand Down

0 comments on commit e82c7ca

Please sign in to comment.