[Lldb-commits] [lldb] 76d294c - [lldb][NFC] Delete all 'else return ...' in CompilerDeclContext.cpp

Raphael Isemann via lldb-commits lldb-commits at lists.llvm.org
Mon Dec 23 02:50:08 PST 2019


Author: Raphael Isemann
Date: 2019-12-23T11:49:35+01:00
New Revision: 76d294cb8744b8b15a72d5adb2d435d2265ea9d7

URL: https://github.com/llvm/llvm-project/commit/76d294cb8744b8b15a72d5adb2d435d2265ea9d7
DIFF: https://github.com/llvm/llvm-project/commit/76d294cb8744b8b15a72d5adb2d435d2265ea9d7.diff

LOG: [lldb][NFC] Delete all 'else return ...' in CompilerDeclContext.cpp

Added: 
    

Modified: 
    lldb/source/Symbol/CompilerDeclContext.cpp

Removed: 
    


################################################################################
diff  --git a/lldb/source/Symbol/CompilerDeclContext.cpp b/lldb/source/Symbol/CompilerDeclContext.cpp
index 25768fcb9f76..581e0872a6a7 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<CompilerDecl>();
+  return std::vector<CompilerDecl>();
 }
 
 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 {


        


More information about the lldb-commits mailing list