[Lldb-commits] [lldb] [lldb-dap] assembly breakpoints (PR #139969)
Ely Ronnen via lldb-commits
lldb-commits at lists.llvm.org
Sun May 18 01:29:59 PDT 2025
================
@@ -53,6 +54,8 @@ class LLDB_API SBFileSpec {
uint32_t GetPath(char *dst_path, size_t dst_len) const;
+ bool GetPath(lldb::SBStream &dst_path) const;
----------------
eronnen wrote:
makes sense, I was trying to avoid the potential problem of the path being longer than `MAX_PATH` but it's still possible to get the real size using `GetFilename` and `GetDirectory`
https://github.com/llvm/llvm-project/pull/139969
More information about the lldb-commits
mailing list