[Lldb-commits] [lldb] [lldb][NFC] Add missing include to LZMA.h (PR #184536)
via lldb-commits
lldb-commits at lists.llvm.org
Tue Mar 3 18:01:07 PST 2026
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-lldb
Author: Keith Smiley (keith)
<details>
<summary>Changes</summary>
This header assumed you already included this otherwise it has errors
---
Full diff: https://github.com/llvm/llvm-project/pull/184536.diff
1 Files Affected:
- (modified) lldb/include/lldb/Host/LZMA.h (+1)
``````````diff
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;
``````````
</details>
https://github.com/llvm/llvm-project/pull/184536
More information about the lldb-commits
mailing list