From e4829adfd5c8df6ecd90ee1c08646df47dfab99d Mon Sep 17 00:00:00 2001 From: Paul Date: Tue, 27 Oct 2015 11:57:11 +0100 Subject: [PATCH] Fix non-modular header --- Core/XMPPLogging.h | 2 +- Core/XMPPStream.h | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Core/XMPPLogging.h b/Core/XMPPLogging.h index 975ee67d83..a09ecf7e43 100644 --- a/Core/XMPPLogging.h +++ b/Core/XMPPLogging.h @@ -59,7 +59,7 @@ * If you created your project with a previous version of Xcode, you may need to add the DEBUG macro manually. **/ -#import "CocoaLumberJack/DDLog.h" +@import CocoaLumberjack; // Global flag to enable/disable logging throughout the entire xmpp framework. diff --git a/Core/XMPPStream.h b/Core/XMPPStream.h index 39d4c0d3b3..55d9ff4dd5 100644 --- a/Core/XMPPStream.h +++ b/Core/XMPPStream.h @@ -2,7 +2,8 @@ #import "XMPPSASLAuthentication.h" #import "XMPPCustomBinding.h" #import "GCDMulticastDelegate.h" -#import "CocoaAsyncSocket/GCDAsyncSocket.h" + +@import CocoaAsyncSocket; #if TARGET_OS_IPHONE #import "DDXML.h"