[Lldb-commits] [lldb] [LLDB][DWARF] Use the same qualified name computation for Rust (PR #165840)
Michael Buch via lldb-commits
lldb-commits at lists.llvm.org
Fri Oct 31 01:59:06 PDT 2025
================
@@ -316,6 +316,10 @@ bool Language::LanguageIsCPlusPlus(LanguageType language) {
}
}
+bool Language::LanguageIsRust(LanguageType language) {
+ return language == eLanguageTypeRust;
----------------
Michael137 wrote:
Lets remove this API and just check the language type directly at the callsite for now
https://github.com/llvm/llvm-project/pull/165840
More information about the lldb-commits
mailing list