diff options
author | Jim Ingham <jingham@apple.com> | 2018-09-07 18:43:04 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2018-09-07 18:43:04 +0000 |
commit | 4911d36aa64e834e074ad0900885a126564d188c (patch) | |
tree | 1667c63a6203a1af52ab5580423b5b4afc552bcf /lldb/source/Target/LanguageRuntime.cpp | |
parent | 960324471bde3bef99b167a1ae9d7f922994a4cb (diff) | |
download | bcm5719-llvm-4911d36aa64e834e074ad0900885a126564d188c.tar.gz bcm5719-llvm-4911d36aa64e834e074ad0900885a126564d188c.zip |
NFC: Move Searcher::Depth into lldb-enumerations as SearchDepth.
In a subsequent commit, I will need to expose the search depth
to the SB API's, so I'm moving this define into lldb-enumerations
where it will get added to the lldb module.
llvm-svn: 341690
Diffstat (limited to 'lldb/source/Target/LanguageRuntime.cpp')
-rw-r--r-- | lldb/source/Target/LanguageRuntime.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Target/LanguageRuntime.cpp b/lldb/source/Target/LanguageRuntime.cpp index bd02121f6a4..22ad2d25ee1 100644 --- a/lldb/source/Target/LanguageRuntime.cpp +++ b/lldb/source/Target/LanguageRuntime.cpp @@ -125,11 +125,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 { |