From b2f0ac3a3b8009bb1266d2814084006d5d6857b4 Mon Sep 17 00:00:00 2001 From: Simon Rozman Date: Wed, 27 Aug 2025 12:49:37 +0200 Subject: [PATCH] system: add note to deprecate sstring Signed-off-by: Simon Rozman --- include/stdex/system.hpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/stdex/system.hpp b/include/stdex/system.hpp index 89105ff99..5b21a55be 100644 --- a/include/stdex/system.hpp +++ b/include/stdex/system.hpp @@ -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; #ifdef UNICODE