mirror of
https://github.com/TermiT/Flycut.git
synced 2024-11-14 13:29:25 +08:00
14 lines
271 B
Text
14 lines
271 B
Text
|
//
|
||
|
// Prefix header for all source files of the 'Flycut-iOS' target in the 'Flycut' project
|
||
|
//
|
||
|
|
||
|
#ifdef __OBJC__
|
||
|
|
||
|
#ifdef DEBUG
|
||
|
# define DLog(fmt, ...) NSLog((@"%s [Line %d] " fmt), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__);
|
||
|
#else
|
||
|
# define DLog(...)
|
||
|
#endif
|
||
|
|
||
|
#endif
|