From 9f210152091ecf8bbaea413ffaaf48960ebb8b17 Mon Sep 17 00:00:00 2001 From: Simon Rozman Date: Sun, 1 Oct 2023 23:12:54 +0200 Subject: [PATCH] system: add sregex Signed-off-by: Simon Rozman --- include/stdex/system.hpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/include/stdex/system.hpp b/include/stdex/system.hpp index d30387f16..b612805a6 100644 --- a/include/stdex/system.hpp +++ b/include/stdex/system.hpp @@ -21,6 +21,7 @@ #endif #include "compat.hpp" #include +#include #include #include @@ -91,6 +92,11 @@ namespace stdex /// using sys_string = sstring; + /// + /// Regular expressions for system strings + /// + using sregex = std::basic_regex; + /// /// Operating system object (file, pipe, anything with an OS handle etc.) ///