diff options
Diffstat (limited to 'contrib/llvm/tools/lldb/source/Target/LanguageRuntime.cpp')
| -rw-r--r-- | contrib/llvm/tools/lldb/source/Target/LanguageRuntime.cpp | 8 | 
1 files changed, 2 insertions, 6 deletions
diff --git a/contrib/llvm/tools/lldb/source/Target/LanguageRuntime.cpp b/contrib/llvm/tools/lldb/source/Target/LanguageRuntime.cpp index bd02121f6a4d..ea6914fb076d 100644 --- a/contrib/llvm/tools/lldb/source/Target/LanguageRuntime.cpp +++ b/contrib/llvm/tools/lldb/source/Target/LanguageRuntime.cpp @@ -7,10 +7,6 @@  //  //===----------------------------------------------------------------------===// -// C Includes -// C++ Includes -// Other libraries and framework includes -// Project includes  #include "lldb/Target/LanguageRuntime.h"  #include "Plugins/Language/ObjC/ObjCLanguage.h"  #include "lldb/Core/PluginManager.h" @@ -125,11 +121,11 @@ public:        return eCallbackReturnStop;    } -  Searcher::Depth GetDepth() override { +  lldb::SearchDepth GetDepth() override {      if (SetActualResolver())        return m_actual_resolver_sp->GetDepth();      else -      return eDepthTarget; +      return lldb::eSearchDepthTarget;    }    void GetDescription(Stream *s) override {  | 
