From d32c30906a64cda66033842dfc7af3665c477f4e Mon Sep 17 00:00:00 2001 From: Brad King Date: Mon, 22 Jan 2024 16:07:41 -0500 Subject: Tests: Add missing include in testUVProcessChainHelper on Windows We use `STATUS_ACCESS_VIOLATION` from `windows.h`. --- Tests/CMakeLib/testUVProcessChainHelper.cxx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Tests/CMakeLib/testUVProcessChainHelper.cxx b/Tests/CMakeLib/testUVProcessChainHelper.cxx index b53cac4..1b4adb7 100644 --- a/Tests/CMakeLib/testUVProcessChainHelper.cxx +++ b/Tests/CMakeLib/testUVProcessChainHelper.cxx @@ -9,6 +9,10 @@ #include "cmSystemTools.h" +#ifdef _WIN32 +# include +#endif + static std::string getStdin() { char buffer[1024]; -- cgit v0.12