Completed the glue that passes a ClangNamespaceDecl *
down through Module and SymbolVendor into SymbolFile.
Added checks to SymbolFileDWARF that restrict symbol
searches when a namespace is passed in.
git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@141847 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Expression/ClangExpressionDeclMap.cpp b/source/Expression/ClangExpressionDeclMap.cpp
index 81416c2..44f40d6 100644
--- a/source/Expression/ClangExpressionDeclMap.cpp
+++ b/source/Expression/ClangExpressionDeclMap.cpp
@@ -2440,7 +2440,7 @@
SymbolContext null_sc;
- namespace_decl = symbol_vendor->FindNamespace(null_sc, name);
+ namespace_decl = symbol_vendor->FindNamespace(null_sc, name, &namespace_decl);
if (namespace_decl)
{