[Lldb-commits] [lldb] c4a406b - [lldb][NFC] Remove outdated FIXME

Alex Langford via lldb-commits lldb-commits at lists.llvm.org
Mon Sep 20 11:44:35 PDT 2021


Author: Alex Langford
Date: 2021-09-20T11:44:20-07:00
New Revision: c4a406bbd0fe3afa8366b72c49b1bc494a168624

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

LOG: [lldb][NFC] Remove outdated FIXME

Added: 
    

Modified: 
    lldb/source/Symbol/DeclVendor.cpp

Removed: 
    


################################################################################
diff  --git a/lldb/source/Symbol/DeclVendor.cpp b/lldb/source/Symbol/DeclVendor.cpp
index cf87f4f879b1d..e99ebfee4cff7 100644
--- a/lldb/source/Symbol/DeclVendor.cpp
+++ b/lldb/source/Symbol/DeclVendor.cpp
@@ -17,8 +17,6 @@ using namespace lldb_private;
 
 std::vector<CompilerType> DeclVendor::FindTypes(ConstString name,
                                                 uint32_t max_matches) {
-  // FIXME: This depends on clang, but should be able to support any
-  // TypeSystem.
   std::vector<CompilerType> ret;
   std::vector<CompilerDecl> decls;
   if (FindDecls(name, /*append*/ true, max_matches, decls))


        


More information about the lldb-commits mailing list