Files
ViGEmBus/sys/Debugging.hpp

10 lines
175 B
C++

//
// Don't compile in verbose tracing on release builds
//
#ifndef DBG
#ifdef TraceDbg
#undef TraceDbg
#define TraceDbg(...) { /* nothing to see here :) */ };
#endif
#endif