10 lines
169 B
C
10 lines
169 B
C
#pragma once
|
|
|
|
#ifdef RNS_DEBUG_LOGGING
|
|
#define RNSLog(...) NSLog(__VA_ARGS__)
|
|
#else
|
|
// Replace with NOOP
|
|
#define RNSLog(...) \
|
|
do { \
|
|
} while (0)
|
|
#endif |