Updated LLVM to latest version as of 10/28 at
7pm, and made minor integration fixes.


git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@117680 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Expression/ClangASTSource.cpp b/source/Expression/ClangASTSource.cpp
index f30cb40..7d3a8c6 100644
--- a/source/Expression/ClangASTSource.cpp
+++ b/source/Expression/ClangASTSource.cpp
@@ -105,7 +105,9 @@
 
 // This is used to support iterating through an entire lexical context,
 // which isn't something the debugger should ever need to do.
-bool ClangASTSource::FindExternalLexicalDecls(const DeclContext *DC, llvm::SmallVectorImpl<Decl*> &Decls) {
+bool ClangASTSource::FindExternalLexicalDecls(const DeclContext *DC, 
+                                              bool (*isKindWeWant)(Decl::Kind),
+                                              llvm::SmallVectorImpl<Decl*> &Decls) {
 	// true is for error, that's good enough for me
 	return true;
 }