From 4911d36aa64e834e074ad0900885a126564d188c Mon Sep 17 00:00:00 2001 From: Jim Ingham Date: Fri, 7 Sep 2018 18:43:04 +0000 Subject: 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 --- lldb/source/Breakpoint/BreakpointResolverFileRegex.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lldb/source/Breakpoint/BreakpointResolverFileRegex.cpp') 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) { -- cgit v1.2.3