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/Breakpoint/BreakpointResolverFileRegex.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/Breakpoint/BreakpointResolverFileRegex.cpp')
-rw-r--r-- | lldb/source/Breakpoint/BreakpointResolverFileRegex.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Breakpoint/BreakpointResolverFileRegex.cpp b/lldb/source/Breakpoint/BreakpointResolverFileRegex.cpp index 54c05a04246..8a15f8ec7e4 100644 --- a/lldb/source/Breakpoint/BreakpointResolverFileRegex.cpp +++ b/lldb/source/Breakpoint/BreakpointResolverFileRegex.cpp @@ -157,8 +157,8 @@ BreakpointResolverFileRegex::SearchCallback(SearchFilter &filter, return Searcher::eCallbackReturnContinue; } -Searcher::Depth BreakpointResolverFileRegex::GetDepth() { - return Searcher::eDepthCompUnit; +lldb::SearchDepth BreakpointResolverFileRegex::GetDepth() { + return lldb::eSearchDepthCompUnit; } void BreakpointResolverFileRegex::GetDescription(Stream *s) { |