diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2016-07-23 20:50:09 +0000 | 
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2016-07-23 20:50:09 +0000 | 
| commit | f3fbd1c0586ff6ec7895991e6c28f61a503c36a8 (patch) | |
| tree | 48d008fd3df8c0e73271a4b18474e0aac6dbfe33 /source/Target/ObjCLanguageRuntime.cpp | |
| parent | 2fc5d2d1dfaf623ce4e24cd8590565902f8c557c (diff) | |
Notes
Diffstat (limited to 'source/Target/ObjCLanguageRuntime.cpp')
| -rw-r--r-- | source/Target/ObjCLanguageRuntime.cpp | 5 | 
1 files changed, 4 insertions, 1 deletions
diff --git a/source/Target/ObjCLanguageRuntime.cpp b/source/Target/ObjCLanguageRuntime.cpp index a18e4c69c571..8911d9dab35e 100644 --- a/source/Target/ObjCLanguageRuntime.cpp +++ b/source/Target/ObjCLanguageRuntime.cpp @@ -16,6 +16,7 @@  #include "lldb/Core/ValueObject.h"  #include "lldb/Symbol/ClangASTContext.h"  #include "lldb/Symbol/SymbolContext.h" +#include "lldb/Symbol/SymbolFile.h"  #include "lldb/Symbol/Type.h"  #include "lldb/Symbol/TypeList.h"  #include "lldb/Target/ObjCLanguageRuntime.h" @@ -122,11 +123,13 @@ ObjCLanguageRuntime::LookupInCompleteClassCache (ConstString &name)          const bool exact_match = true;          const uint32_t max_matches = UINT32_MAX;          TypeList types; -         + +        llvm::DenseSet<SymbolFile *> searched_symbol_files;          const uint32_t num_types = module_sp->FindTypes (null_sc,                                                           name,                                                           exact_match,                                                           max_matches, +                                                         searched_symbol_files,                                                           types);          if (num_types)  | 
