[Lldb-commits] [lldb] [lldb] Add SBTypeStaticField to SBDefines (PR #111560)
Chelsea Cassanova via lldb-commits
lldb-commits at lists.llvm.org
Tue Oct 8 10:07:55 PDT 2024
https://github.com/chelcassanova created https://github.com/llvm/llvm-project/pull/111560
SBTypeStaticField was missing from SBDefines, this commit adds the class there.
>From db7d2f7cc126e348e7c524f19196fca42a6142c9 Mon Sep 17 00:00:00 2001
From: Chelsea Cassanova <chelsea_cassanova at apple.com>
Date: Tue, 8 Oct 2024 10:01:31 -0700
Subject: [PATCH] [lldb] Add SBTypeStaticField to SBDefines
SBTypeStaticField was missing from SBDefines, this commit adds the class there.
---
lldb/include/lldb/API/SBDefines.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/lldb/include/lldb/API/SBDefines.h b/lldb/include/lldb/API/SBDefines.h
index 9543ebc08a320f..159a9ba799b181 100644
--- a/lldb/include/lldb/API/SBDefines.h
+++ b/lldb/include/lldb/API/SBDefines.h
@@ -124,6 +124,7 @@ class LLDB_API SBTypeFormat;
class LLDB_API SBTypeMember;
class LLDB_API SBTypeMemberFunction;
class LLDB_API SBTypeNameSpecifier;
+class LLDB_API SBTypeStaticField;
class LLDB_API SBTypeSummary;
class LLDB_API SBTypeSummaryOptions;
class LLDB_API SBTypeSynthetic;
More information about the lldb-commits
mailing list