[Lldb-commits] [lldb] Add the ability to break on call-site locations, improve inline stepping (PR #112939)
via lldb-commits
lldb-commits at lists.llvm.org
Mon Oct 21 17:31:43 PDT 2024
================
@@ -71,7 +71,7 @@ int Declaration::Compare(const Declaration &a, const Declaration &b) {
}
bool Declaration::FileAndLineEqual(const Declaration &declaration) const {
- int file_compare = FileSpec::Compare(this->m_file, declaration.m_file, true);
+ int file_compare = FileSpec::Compare(this->m_file, declaration.m_file, false);
----------------
jimingham wrote:
Better to do it on the up-and-up. I added a full parameter and set it in the two places this function is used.
https://github.com/llvm/llvm-project/pull/112939
More information about the lldb-commits
mailing list