diff options
| author | Sean Callanan <scallanan@apple.com> | 2010-10-29 18:38:40 +0000 |
|---|---|---|
| committer | Sean Callanan <scallanan@apple.com> | 2010-10-29 18:38:40 +0000 |
| commit | 31e851c9f38250d365d168fd0d368e9099b1dbe6 (patch) | |
| tree | 89c4339190ed878de9398f44fb3f2d4fb2b3d518 /lldb/source/Expression/ClangASTSource.cpp | |
| parent | 13ff53e7b6270ffe20275cdd7e108c14508e4ecd (diff) | |
| download | bcm5719-llvm-31e851c9f38250d365d168fd0d368e9099b1dbe6.tar.gz bcm5719-llvm-31e851c9f38250d365d168fd0d368e9099b1dbe6.zip | |
Updated LLVM to latest version as of 10/28 at
7pm, and made minor integration fixes.
llvm-svn: 117680
Diffstat (limited to 'lldb/source/Expression/ClangASTSource.cpp')
| -rw-r--r-- | lldb/source/Expression/ClangASTSource.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lldb/source/Expression/ClangASTSource.cpp b/lldb/source/Expression/ClangASTSource.cpp index f30cb40dc7d..7d3a8c64aa9 100644 --- a/lldb/source/Expression/ClangASTSource.cpp +++ b/lldb/source/Expression/ClangASTSource.cpp @@ -105,7 +105,9 @@ void ClangASTSource::MaterializeVisibleDecls(const DeclContext *DC) // 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; } |

