[Lldb-commits] [lldb] [lldb] [Windows] Add missing includes (PR #186449)

Martin Storsjö via lldb-commits lldb-commits at lists.llvm.org
Fri Mar 13 10:13:20 PDT 2026


https://github.com/mstorsjo updated https://github.com/llvm/llvm-project/pull/186449

>From 06fbaeb1be2c6897cde3131546ba34425c3c9cfe Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Martin=20Storsj=C3=B6?= <martin at martin.st>
Date: Fri, 13 Mar 2026 18:49:18 +0200
Subject: [PATCH] [lldb] [Windows] Add missing includes

This fixes building with libstdc++ after
796a1ea79f413673cbce8ab8975c748f1dbcdc3f.
---
 lldb/include/lldb/Host/windows/PseudoConsole.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/lldb/include/lldb/Host/windows/PseudoConsole.h b/lldb/include/lldb/Host/windows/PseudoConsole.h
index a1967fc85188c..117d42fcbbef1 100644
--- a/lldb/include/lldb/Host/windows/PseudoConsole.h
+++ b/lldb/include/lldb/Host/windows/PseudoConsole.h
@@ -10,6 +10,8 @@
 #define LIBLLDB_HOST_WINDOWS_PSEUDOCONSOLE_H_
 
 #include "llvm/Support/Error.h"
+#include <atomic>
+#include <condition_variable>
 #include <mutex>
 #include <string>
 



More information about the lldb-commits mailing list