Add TL_ONLY_IN_DEBUG macro #2

Merged
jeanlemotan merged 1 commits from javier.martin/only_in_debug_macro into main 2024-07-04 15:54:50 +02:00
Showing only changes of commit 9882ab49c9 - Show all commits
+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