[Lldb-commits] [lldb] ee79fea - [lldb][NFC] Remove forward declaration of PrivateAutoCompleteMembers

Raphael Isemann via lldb-commits lldb-commits at lists.llvm.org
Thu Nov 28 03:46:21 PST 2019


Author: Raphael Isemann
Date: 2019-11-28T12:45:48+01:00
New Revision: ee79feaec3ed44b21654936baf44561f5f726dfc

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

LOG: [lldb][NFC] Remove forward declaration of PrivateAutoCompleteMembers

That's declared directly above the actual definition, so it serves no use.

Added: 
    

Modified: 
    lldb/source/Symbol/Variable.cpp

Removed: 
    


################################################################################
diff  --git a/lldb/source/Symbol/Variable.cpp b/lldb/source/Symbol/Variable.cpp
index a2eeaa1d2a5b..6e4b87c47700 100644
--- a/lldb/source/Symbol/Variable.cpp
+++ b/lldb/source/Symbol/Variable.cpp
@@ -487,13 +487,6 @@ static void PrivateAutoComplete(
         &prefix_path, // Anything that has been resolved already will be in here
     const CompilerType &compiler_type, CompletionRequest &request);
 
-static void PrivateAutoCompleteMembers(
-    StackFrame *frame, const std::string &partial_member_name,
-    llvm::StringRef partial_path,
-    const llvm::Twine
-        &prefix_path, // Anything that has been resolved already will be in here
-    const CompilerType &compiler_type, CompletionRequest &request);
-
 static void PrivateAutoCompleteMembers(
     StackFrame *frame, const std::string &partial_member_name,
     llvm::StringRef partial_path,


        


More information about the lldb-commits mailing list