We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0afb780 commit d98868cCopy full SHA for d98868c
lldb/tools/lldb-dap/Breakpoint.cpp
@@ -8,6 +8,7 @@
8
9
#include "Breakpoint.h"
10
#include "DAP.h"
11
+#include "LLDBUtils.h"
12
#include "Protocol/DAPTypes.h"
13
#include "ProtocolUtils.h"
14
#include "lldb/API/SBAddress.h"
@@ -35,7 +36,7 @@ GetPersistenceDataForAddress(lldb::SBAddress &addr) {
35
36
if (!file_spec.IsValid())
37
return std::nullopt;
38
- persistence_data.module = file_spec.GetFilename();
39
+ persistence_data.module = GetSBFileSpecPath(file_spec);
40
persistence_data.file_addr = addr.GetFileAddress();
41
return persistence_data;
42
}
0 commit comments