system: add note to deprecate sstring
Some checks failed
Doxygen Action / build (push) Has been cancelled

Signed-off-by: Simon Rozman <simon@rozman.si>
This commit is contained in:
2025-08-27 12:49:37 +02:00
parent de592cebb9
commit b2f0ac3a3b

View File

@@ -58,6 +58,8 @@ namespace stdex
///
/// Character type for system functions
///
/// \note TODO: Should migrate to std::filesystem::path::value_type. Research UNICODE/_UNICODE behavior on Windows.
///
#if defined(_WIN32)
using schar_t = TCHAR;
#else
@@ -73,6 +75,8 @@ namespace stdex
///
/// String for system functions
///
/// \note TODO: Should migrate to std::filesystem::path. Research UNICODE/_UNICODE behavior on Windows.
///
using sstring = std::basic_string<stdex::schar_t>;
#ifdef UNICODE