summaryrefslogtreecommitdiffstats
path: root/lldb/source/Expression/ClangExpressionDeclMap.cpp
diff options
context:
space:
mode:
authorSean Callanan <scallanan@apple.com>2011-10-13 21:50:33 +0000
committerSean Callanan <scallanan@apple.com>2011-10-13 21:50:33 +0000
commitebe6067a8cf420445cfb50bac9ed1fc699fcc328 (patch)
tree0bf38a46ed6f7e7c62caa9d60fb852e89b5e0ca6 /lldb/source/Expression/ClangExpressionDeclMap.cpp
parent7cdf9486015e6a220d60e999313c12110ee8a12f (diff)
downloadbcm5719-llvm-ebe6067a8cf420445cfb50bac9ed1fc699fcc328.tar.gz
bcm5719-llvm-ebe6067a8cf420445cfb50bac9ed1fc699fcc328.zip
Enabled the namespace-specific search functionality,
which had previously been commented out while I tested it. It's not fully working yet, but it doesn't break our testsuite and it's an important piece of functionality. Also added some logging to SymbolFileDWARF to help diagnose entities that are found in a symbol file, but do not reside in the expected namespace. llvm-svn: 141894
Diffstat (limited to 'lldb/source/Expression/ClangExpressionDeclMap.cpp')
-rw-r--r--lldb/source/Expression/ClangExpressionDeclMap.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/lldb/source/Expression/ClangExpressionDeclMap.cpp b/lldb/source/Expression/ClangExpressionDeclMap.cpp
index 3534147b46e..6db37572f8f 100644
--- a/lldb/source/Expression/ClangExpressionDeclMap.cpp
+++ b/lldb/source/Expression/ClangExpressionDeclMap.cpp
@@ -2070,10 +2070,10 @@ ClangExpressionDeclMap::FindExternalVisibleDecls (NameSearchContext &context, co
i->second.GetNamespaceDecl()->getNameAsString().c_str(),
i->first->GetFileSpec().GetFilename().GetCString());
- //FindExternalVisibleDecls(context,
- // i->first,
- // i->second,
- // name);
+ FindExternalVisibleDecls(context,
+ i->first,
+ i->second,
+ name);
}
}
else if (!isa<TranslationUnitDecl>(context.m_decl_context))
OpenPOWER on IntegriCloud