From 11e56f927f3cc2ff2147067dc9277a3cc0ff9350 Mon Sep 17 00:00:00 2001 From: Simon Rozman Date: Wed, 18 Oct 2023 08:14:28 +0200 Subject: [PATCH] string: add missing #include to support uuid_t on Windows Signed-off-by: Simon Rozman --- include/stdex/string.hpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/include/stdex/string.hpp b/include/stdex/string.hpp index ea0d3a8aa..31f0fcbeb 100644 --- a/include/stdex/string.hpp +++ b/include/stdex/string.hpp @@ -16,10 +16,12 @@ #ifdef __APPLE__ #include #endif -#ifndef _WIN32 +#ifdef _WIN32 +#include +#else #include #endif -#include +#include #include #include #include