1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-10-15 03:48:02 +08:00

Tests: Add missing include in testUVProcessChainHelper on Windows

We use `STATUS_ACCESS_VIOLATION` from `windows.h`.
This commit is contained in:
Brad King
2024-01-22 16:07:41 -05:00
parent 30c067e24a
commit d32c30906a

View File

@@ -9,6 +9,10 @@
#include "cmSystemTools.h"
#ifdef _WIN32
# include <windows.h>
#endif
static std::string getStdin()
{
char buffer[1024];