From: Raphael Isemann Date: Mon, 20 Jul 2020 07:59:40 +0000 (+0200) Subject: [lldb][NFC] Remove unused FormattersContainer::Get overload X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=43f8a7c83b748f1509fa7ebf7276353018755995;p=platform%2Fupstream%2Fllvm.git [lldb][NFC] Remove unused FormattersContainer::Get overload This is unused and also calls a non-existent 'Get' overload. --- diff --git a/lldb/include/lldb/DataFormatters/FormattersContainer.h b/lldb/include/lldb/DataFormatters/FormattersContainer.h index d414882..2b9c1dc 100644 --- a/lldb/include/lldb/DataFormatters/FormattersContainer.h +++ b/lldb/include/lldb/DataFormatters/FormattersContainer.h @@ -180,17 +180,6 @@ public: return Delete_Impl(type, static_cast(nullptr)); } - bool Get(ValueObject &valobj, MapValueType &entry, - lldb::DynamicValueType use_dynamic) { - CompilerType ast_type(valobj.GetCompilerType()); - bool ret = Get(valobj, ast_type, entry, use_dynamic); - if (ret) - entry = MapValueType(entry); - else - entry = MapValueType(); - return ret; - } - bool Get(ConstString type, MapValueType &entry) { return Get_Impl(type, entry, static_cast(nullptr)); }