Skip to content

Commit

Permalink
Merge pull request #849 from an0/patch-1
Browse files Browse the repository at this point in the history
Correct nullability of function
  • Loading branch information
rivera-ernesto committed Mar 9, 2017
2 parents 7ae144f + 08beb82 commit ca61764
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Classes/DDLog.h
Original file line number Diff line number Diff line change
Expand Up @@ -817,7 +817,7 @@ typedef NS_OPTIONS(NSInteger, DDLogMessageOptions){
flag:(DDLogFlag)flag
context:(NSInteger)context
file:(NSString *)file
function:(NSString *__null_unspecified)function
function:(NSString * __nullable)function
line:(NSUInteger)line
tag:(id __nullable)tag
options:(DDLogMessageOptions)options
Expand All @@ -836,7 +836,7 @@ typedef NS_OPTIONS(NSInteger, DDLogMessageOptions){
@property (readonly, nonatomic) NSInteger context;
@property (readonly, nonatomic) NSString *file;
@property (readonly, nonatomic) NSString *fileName;
@property (readonly, nonatomic) NSString *__null_unspecified function;
@property (readonly, nonatomic) NSString * __nullable function;
@property (readonly, nonatomic) NSUInteger line;
@property (readonly, nonatomic) id __nullable tag;
@property (readonly, nonatomic) DDLogMessageOptions options;
Expand Down

0 comments on commit ca61764

Please sign in to comment.