Skip to content

Commit

Permalink
fix warnings when using modules (#1244)
Browse files Browse the repository at this point in the history
  • Loading branch information
nivekkagicom authored and kornelski committed Mar 2, 2019
1 parent c7beba9 commit 420be06
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Sparkle/SUCodeSigningVerifier.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,11 @@
#ifndef SUCODESIGNINGVERIFIER_H
#define SUCODESIGNINGVERIFIER_H

#if __has_feature(modules)
@import Foundation;
#else
#import <Foundation/Foundation.h>
#endif
#import "SUExport.h"

SU_EXPORT @interface SUCodeSigningVerifier : NSObject
Expand Down

0 comments on commit 420be06

Please sign in to comment.