include/xot/debug.h in xot-0.1.12 vs include/xot/debug.h in xot-0.1.13

- old
+ new

@@ -2,14 +2,19 @@ #pragma once #ifndef __XOT_DEBUG_H__ #define __XOT_DEBUG_H__ +#if 1//def _DEBUG +#define XOT_USE_DOUT +#endif + + namespace Xot { -#ifdef _DEBUG +#ifdef XOT_USE_DOUT void dout (const char* format, ...); void doutln (const char* format, ...);