Skip to content

Commit

Permalink
Import frameworks as modules
Browse files Browse the repository at this point in the history
  • Loading branch information
mattt committed Oct 17, 2018
1 parent 90e3e81 commit 7ec3831
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion Sources/NSValueTransformer+TransformerKit.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.

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

NS_ASSUME_NONNULL_BEGIN

Expand Down
4 changes: 2 additions & 2 deletions Sources/NSValueTransformer+TransformerKit.m
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@

#import "NSValueTransformer+TransformerKit.h"

#import <Availability.h>
#import <objc/runtime.h>
@import Darwin.Availability;
@import ObjectiveC.runtime;

NS_ASSUME_NONNULL_BEGIN

Expand Down
2 changes: 1 addition & 1 deletion Sources/NSValueTransformerName.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.

#include <AvailabilityMacros.h>
@import Darwin.Availability;

#ifndef NSValueTransformerName_h
#define NSValueTransformerName_h
Expand Down
2 changes: 1 addition & 1 deletion Sources/TTTCryptographyTransformers.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.

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

NS_ASSUME_NONNULL_BEGIN
Expand Down
2 changes: 1 addition & 1 deletion Sources/TTTDataTransformers.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.

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

NS_ASSUME_NONNULL_BEGIN
Expand Down
2 changes: 1 addition & 1 deletion Sources/TTTDataTransformers.m
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.

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

#import "TTTDataTransformers.h"

Expand Down
2 changes: 1 addition & 1 deletion Sources/TTTDateTransformers.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.

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

NS_ASSUME_NONNULL_BEGIN
Expand Down
4 changes: 2 additions & 2 deletions Sources/TTTDateTransformers.m
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@

#import "NSValueTransformer+TransformerKit.h"

#include <time.h>
#include <xlocale.h>
@import Darwin.C.time;
@import Darwin.C.xlocale;

NS_ASSUME_NONNULL_BEGIN

Expand Down
2 changes: 1 addition & 1 deletion Sources/TTTImageTransformers.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.

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

NS_ASSUME_NONNULL_BEGIN
Expand Down
2 changes: 1 addition & 1 deletion Sources/TTTJSONTransformer.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.

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

NS_ASSUME_NONNULL_BEGIN
Expand Down
2 changes: 1 addition & 1 deletion Sources/TTTStringTransformers.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.

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

NS_ASSUME_NONNULL_BEGIN
Expand Down

0 comments on commit 7ec3831

Please sign in to comment.