Add TL_ONLY_IN_DEBUG macro

This commit was merged in pull request #2.
This commit is contained in:
2024-07-04 10:48:32 +02:00
committed by jeanlemotan
parent f5c6b75621
commit 932e770687
+7
View File
@@ -0,0 +1,7 @@
#pragma once
#ifdef _DEBUG
#define TL_ONLY_IN_DEBUG(...) __VA_ARGS__
#else
#define TL_ONLY_IN_DEBUG(...)
#endif