[Lldb-commits] [lldb] Add AddressRange to SB API (PR #92014)

Alex Langford via lldb-commits lldb-commits at lists.llvm.org
Thu May 16 10:54:44 PDT 2024


================
@@ -242,6 +244,12 @@ class AddressRange {
   lldb::addr_t m_byte_size = 0; ///< The size in bytes of this address range.
 };
 
+// Forward-declarable wrapper.
+class AddressRanges : public std::vector<lldb_private::AddressRange> {
+public:
+  using std::vector<lldb_private::AddressRange>::vector;
+};
----------------
bulbazord wrote:

Sorry, "above" was the wrong word. I meant "below", but to be even more specific, I'm referring to this: https://github.com/llvm/llvm-project/pull/92014#discussion_r1602020217

https://github.com/llvm/llvm-project/pull/92014


More information about the lldb-commits mailing list