Author: Sergei Druzhkov Date: 2025-12-16T16:11:01+03:00 New Revision: cc13d46d8fe13932c908a7e4efb5a29edd2c8663
URL: https://github.com/llvm/llvm-project/commit/cc13d46d8fe13932c908a7e4efb5a29edd2c8663 DIFF: https://github.com/llvm/llvm-project/commit/cc13d46d8fe13932c908a7e4efb5a29edd2c8663.diff LOG: [lldb-dap] Fix Windows build (#172475) Fix after #172283 Added: Modified: lldb/tools/lldb-dap/Handler/CompileUnitsRequestHandler.cpp Removed: ################################################################################ diff --git a/lldb/tools/lldb-dap/Handler/CompileUnitsRequestHandler.cpp b/lldb/tools/lldb-dap/Handler/CompileUnitsRequestHandler.cpp index 230c10470bedb..e1a3b15b4697b 100644 --- a/lldb/tools/lldb-dap/Handler/CompileUnitsRequestHandler.cpp +++ b/lldb/tools/lldb-dap/Handler/CompileUnitsRequestHandler.cpp @@ -10,6 +10,7 @@ #include "EventHelper.h" #include "Protocol/ProtocolRequests.h" #include "RequestHandler.h" +#include "lldb/Host/PosixApi.h" // IWYU pragma: keep using namespace lldb_dap; using namespace lldb_dap::protocol; _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
