Skip to content

Commit

Permalink
dout, add missing nullability specifiers.
Browse files Browse the repository at this point in the history
  • Loading branch information
BB9z committed Jun 10, 2018
1 parent 9a5f1f7 commit da2d57b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dout.h
Original file line number Diff line number Diff line change
Expand Up @@ -199,10 +199,10 @@
This methiod simulate Debugger() behavior by throwing objective-c exception.
So you should set an exception breakpoint to use it.
*/
FOUNDATION_EXPORT void RFDebugger(NSString *_Nullable format, ...) NS_FORMAT_FUNCTION(1, 2);
FOUNDATION_EXPORT void RFDebugger(NSString *__nullable format, ...) NS_FORMAT_FUNCTION(1, 2);

void DoutLogString(NSString *string);
NSString *DoutCurrentThreadOrQueueName(void);
void DoutLogString(NSString *__nullable string);
NSString *__nonnull DoutCurrentThreadOrQueueName(void);
void _dout_log_config(void);

#endif

0 comments on commit da2d57b

Please sign in to comment.