From b3359a922dbdd199d8828a76beb2fab49f3f5dbd Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 12 Mar 2024 16:51:12 +0100 Subject: [PATCH] Include errno.h before using errno in the string unit test Even if the code currently compiles without this, it's still better to explicitly include the header we need. --- tests/strings/strings.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/strings/strings.cpp b/tests/strings/strings.cpp index 65ba92da1b..fd714aab82 100644 --- a/tests/strings/strings.cpp +++ b/tests/strings/strings.cpp @@ -19,6 +19,8 @@ #include "wx/private/localeset.h" +#include + // ---------------------------------------------------------------------------- // tests // ----------------------------------------------------------------------------