mirror of https://github.com/SeanOMik/libki.git
9 lines
143 B
C
9 lines
143 B
C
|
#pragma once
|
||
|
#include <iostream>
|
||
|
|
||
|
#if defined(NDEBUG)
|
||
|
#define TRACE if (0) std::cout
|
||
|
#else
|
||
|
#define TRACE if (1) std::cout << "[TRACE] "
|
||
|
#endif
|