system: move _T to compat

...where it belongs.

Signed-off-by: Simon Rozman <simon@rozman.si>
This commit is contained in:
Simon Rozman 2024-05-28 10:25:20 +02:00
parent 5436dda7f6
commit f643951425
2 changed files with 3 additions and 1 deletions

View File

@ -159,6 +159,9 @@
#define __L(x) L ## x #define __L(x) L ## x
#define _L(x) __L(x) #define _L(x) __L(x)
#endif #endif
#ifndef _T
#define _T(x) x
#endif
#ifndef _Likely_ #ifndef _Likely_
#if _HAS_CXX20 #if _HAS_CXX20

View File

@ -62,7 +62,6 @@ namespace stdex
using schar_t = TCHAR; using schar_t = TCHAR;
#else #else
using schar_t = char; using schar_t = char;
#define _T(x) x
#endif #endif
/// ///