[Lldb-commits] [lldb] [lldb-dap] Migrate attach to typed RequestHandler. (PR #137911)
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Tue May 6 20:00:27 PDT 2025
================
@@ -183,7 +194,7 @@ struct Configuration {
/// Specify a source path to remap "./" to allow full paths to be used when
/// setting breakpoints in binaries that have relative source paths.
- std::optional<std::string> sourcePath;
+ std::string sourcePath = "";
----------------
JDevlieghere wrote:
Why not just? Same below.
```suggestion
std::string sourcePath;
```
https://github.com/llvm/llvm-project/pull/137911
More information about the lldb-commits
mailing list