From e0cbc4a90a00149dd9ceed08122444629f39d7ab Mon Sep 17 00:00:00 2001 From: Simon Rozman Date: Tue, 17 Jun 2025 16:38:06 +0200 Subject: [PATCH] locale: add missing #include Signed-off-by: Simon Rozman --- include/stdex/locale.hpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/include/stdex/locale.hpp b/include/stdex/locale.hpp index bac6baa54..98862c454 100644 --- a/include/stdex/locale.hpp +++ b/include/stdex/locale.hpp @@ -1,4 +1,4 @@ -/* +/* SPDX-License-Identifier: MIT Copyright © 2016-2025 Amebis */ @@ -7,6 +7,9 @@ #include "compat.hpp" #include +#ifndef _WIN32 +#include +#endif #include #if defined(__GNUC__)