[Lldb-commits] [lldb] [lldb] Update API headers for SBProgress (PR #124836)

Alex Langford via lldb-commits lldb-commits at lists.llvm.org
Tue Jan 28 13:01:45 PST 2025


https://github.com/bulbazord created https://github.com/llvm/llvm-project/pull/124836

Some clients only include LLDB.h and they won't get access to SBProgress without this.

>From f740e0f6fd3a355dc427c6e5b6de823bd6182426 Mon Sep 17 00:00:00 2001
From: Alex Langford <alangford at apple.com>
Date: Tue, 28 Jan 2025 12:57:21 -0800
Subject: [PATCH] [lldb] Update API headers for SBProgress

Some clients only include LLDB.h and they won't get access to
SBProgress without this.
---
 lldb/include/lldb/API/LLDB.h      | 1 +
 lldb/include/lldb/API/SBDefines.h | 1 +
 2 files changed, 2 insertions(+)

diff --git a/lldb/include/lldb/API/LLDB.h b/lldb/include/lldb/API/LLDB.h
index 40368e036e0e40..126fcef31b4166 100644
--- a/lldb/include/lldb/API/LLDB.h
+++ b/lldb/include/lldb/API/LLDB.h
@@ -54,6 +54,7 @@
 #include "lldb/API/SBProcess.h"
 #include "lldb/API/SBProcessInfo.h"
 #include "lldb/API/SBProcessInfoList.h"
+#include "lldb/API/SBProgress.h"
 #include "lldb/API/SBQueue.h"
 #include "lldb/API/SBQueueItem.h"
 #include "lldb/API/SBReproducer.h"
diff --git a/lldb/include/lldb/API/SBDefines.h b/lldb/include/lldb/API/SBDefines.h
index 159a9ba799b181..31e8c9279f8b8b 100644
--- a/lldb/include/lldb/API/SBDefines.h
+++ b/lldb/include/lldb/API/SBDefines.h
@@ -95,6 +95,7 @@ class LLDB_API SBPlatformShellCommand;
 class LLDB_API SBProcess;
 class LLDB_API SBProcessInfo;
 class LLDB_API SBProcessInfoList;
+class LLDB_API SBProgress;
 class LLDB_API SBQueue;
 class LLDB_API SBQueueItem;
 class LLDB_API SBReplayOptions;



More information about the lldb-commits mailing list