From e0e1663c58d9a5fb8fcfa1d8138347dc7826f54d Mon Sep 17 00:00:00 2001 From: Simon Rozman Date: Tue, 27 Feb 2024 13:57:03 +0100 Subject: [PATCH] sys_info: fix missing #includes Signed-off-by: Simon Rozman --- include/stdex/sys_info.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/stdex/sys_info.hpp b/include/stdex/sys_info.hpp index b2b01fee4..3e0a506db 100644 --- a/include/stdex/sys_info.hpp +++ b/include/stdex/sys_info.hpp @@ -6,6 +6,7 @@ #pragma once #include "compat.hpp" +#include "string.hpp" #include "system.hpp" #if defined(_WIN32) #include "windows.h" @@ -14,6 +15,7 @@ #else #include #endif +#include #include #if defined(__GNUC__)