[lldb][NFCI] Remove unused LanguageType parameters

These parameters are unused in these methods, and some of them only had a
LanguageType parameter to pipe to other methods that don't use it
either.
This commit is contained in:
Alex Langford
2020-01-30 21:55:18 -08:00
parent 196b31f9f1
commit 22b044877d
27 changed files with 97 additions and 163 deletions

View File

@@ -69,7 +69,7 @@ void PersistentExpressionState::RegisterExecutionUnit(
// of the demangled name will find the mangled one (needed for looking up
// metadata pointers.)
Mangled mangler(global_var.m_name);
mangler.GetDemangledName(lldb::eLanguageTypeUnknown);
mangler.GetDemangledName();
m_symbol_map[global_var.m_name.GetCString()] = global_var.m_remote_addr;
LLDB_LOGF(log, " Symbol: %s at 0x%" PRIx64 ".",
global_var.m_name.GetCString(), global_var.m_remote_addr);