Author: Zequan Wu Date: 2024-10-29T14:38:02-07:00 New Revision: a325c5359310316e393e7e446373fca645002ecb
URL: https://github.com/llvm/llvm-project/commit/a325c5359310316e393e7e446373fca645002ecb DIFF: https://github.com/llvm/llvm-project/commit/a325c5359310316e393e7e446373fca645002ecb.diff LOG: [lldb] Fix lldb windows build breakage from https://github.com/llvm/llvm-project/pull/112657. LLDB windows build failure: https://lab.llvm.org/buildbot/#/builders/141/builds/3462 Added: Modified: lldb/unittests/Host/FileActionTest.cpp Removed: ################################################################################ diff --git a/lldb/unittests/Host/FileActionTest.cpp b/lldb/unittests/Host/FileActionTest.cpp index 3d2c722552c9c2..56227cd587e5bb 100644 --- a/lldb/unittests/Host/FileActionTest.cpp +++ b/lldb/unittests/Host/FileActionTest.cpp @@ -10,6 +10,9 @@ #include "lldb/Host/FileAction.h" #include "gtest/gtest.h" +#if defined(_WIN32) +#include "lldb/Host/windows/PosixApi.h" +#endif using namespace lldb_private; _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits