[Lldb-commits] [lldb] [lldb][NFC] Add missing include to LZMA.h (PR #184536)
Keith Smiley via lldb-commits
lldb-commits at lists.llvm.org
Tue Mar 3 17:58:10 PST 2026
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 <keithbsmiley at gmail.com>
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;
More information about the lldb-commits
mailing list