From 76d294cb8744b8b15a72d5adb2d435d2265ea9d7 Mon Sep 17 00:00:00 2001 From: Raphael Isemann Date: Mon, 23 Dec 2019 11:49:25 +0100 Subject: [lldb][NFC] Delete all 'else return ...' in CompilerDeclContext.cpp --- lldb/source/Symbol/CompilerDeclContext.cpp | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) (limited to 'lldb/source/Symbol/CompilerDeclContext.cpp') diff --git a/lldb/source/Symbol/CompilerDeclContext.cpp b/lldb/source/Symbol/CompilerDeclContext.cpp index 25768fcb9f7..581e0872a6a 100644 --- a/lldb/source/Symbol/CompilerDeclContext.cpp +++ b/lldb/source/Symbol/CompilerDeclContext.cpp @@ -19,22 +19,19 @@ CompilerDeclContext::FindDeclByName(ConstString name, if (IsValid()) return m_type_system->DeclContextFindDeclByName(m_opaque_decl_ctx, name, ignore_using_decls); - else - return std::vector(); + return std::vector(); } ConstString CompilerDeclContext::GetName() const { if (IsValid()) return m_type_system->DeclContextGetName(m_opaque_decl_ctx); - else - return ConstString(); + return ConstString(); } ConstString CompilerDeclContext::GetScopeQualifiedName() const { if (IsValid()) return m_type_system->DeclContextGetScopeQualifiedName(m_opaque_decl_ctx); - else - return ConstString(); + return ConstString(); } bool CompilerDeclContext::IsClassMethod(lldb::LanguageType *language_ptr, @@ -44,8 +41,7 @@ bool CompilerDeclContext::IsClassMethod(lldb::LanguageType *language_ptr, return m_type_system->DeclContextIsClassMethod( m_opaque_decl_ctx, language_ptr, is_instance_method_ptr, language_object_name_ptr); - else - return false; + return false; } bool CompilerDeclContext::IsContainedInLookup(CompilerDeclContext other) const { -- cgit v1.2.3