reduced complexity of using _print_ns
So that `_print_ns(...);` does not have to be wrapped in `#ifdef` statements it is now defined as an empty macro when the `DEBUG` macro is not defined; equivalent to: ``` #ifndef DEBUG #define _print_ns(X) #endif ```
Loading
Please register or sign in to comment