[Lldb-commits] [lldb] [LLDB][SBSaveCore] Add selectable memory regions to SBSaveCore (PR #105442)
Jacob Lalonde via lldb-commits
lldb-commits at lists.llvm.org
Wed Aug 21 09:29:30 PDT 2024
================
@@ -449,6 +449,10 @@ class RangeDataVector {
~RangeDataVector() = default;
void Append(const Entry &entry) { m_entries.emplace_back(entry); }
+
+ void Append(const B&& b, const S&& s, const T&& t) {
----------------
Jlalond wrote:
Yeah, I can drop const but these are r values so we can just emplace them directly.
https://github.com/llvm/llvm-project/pull/105442
More information about the lldb-commits
mailing list