https://github.com/keith created https://github.com/llvm/llvm-project/pull/184536
This header assumed you already included this otherwise it has errors >From 9b267cf164ebcadd0d10dd87ff272bbef7611367 Mon Sep 17 00:00:00 2001 From: Keith Smiley <[email protected]> Date: Tue, 3 Mar 2026 17:57:31 -0800 Subject: [PATCH] [lldb][NFC] Add missing include to LZMA.h This header assumed you already included this otherwise it has errors --- lldb/include/lldb/Host/LZMA.h | 1 + 1 file changed, 1 insertion(+) diff --git a/lldb/include/lldb/Host/LZMA.h b/lldb/include/lldb/Host/LZMA.h index 5314dab53e442..8dc69a8dc10e5 100644 --- a/lldb/include/lldb/Host/LZMA.h +++ b/lldb/include/lldb/Host/LZMA.h @@ -10,6 +10,7 @@ #define LLDB_HOST_LZMA_H #include "llvm/ADT/ArrayRef.h" +#include "llvm/Support/Error.h" namespace llvm { class Error; _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
