summaryrefslogtreecommitdiffstats
path: root/lldb/source/Breakpoint/BreakpointResolverFileRegex.cpp
diff options
context:
space:
mode:
authorJim Ingham <jingham@apple.com>2018-09-07 18:43:04 +0000
committerJim Ingham <jingham@apple.com>2018-09-07 18:43:04 +0000
commit4911d36aa64e834e074ad0900885a126564d188c (patch)
tree1667c63a6203a1af52ab5580423b5b4afc552bcf /lldb/source/Breakpoint/BreakpointResolverFileRegex.cpp
parent960324471bde3bef99b167a1ae9d7f922994a4cb (diff)
downloadbcm5719-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.cpp4
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) {
OpenPOWER on IntegriCloud