Files
TL/include/tl/only_in_debug.h
T
2024-07-04 15:54:49 +02:00

8 lines
113 B
C

#pragma once
#ifdef _DEBUG
#define TL_ONLY_IN_DEBUG(...) __VA_ARGS__
#else
#define TL_ONLY_IN_DEBUG(...)
#endif