Skip to content

Commit 7670718

Browse files
committed
[lldb] Build fix: variable name typo
Build failure introduced in `de10c1a824405833a0f49b22e7fa3f32a1393cc3` (cherry picked from commit 4d909c5)
1 parent 4e0f66a commit 7670718

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/source/Plugins/LanguageRuntime/CPlusPlus/CPPLanguageRuntime.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ bool CPPLanguageRuntime::ShouldHideVariable(llvm::StringRef name) const {
4949
static RegularExpression ignore_global_ranges_pattern(
5050
"std::__[[:alnum:]]+::ranges(::views)*::__cpo");
5151

52-
return ignore_globale_ranges_pattern.Execute(name);
52+
return ignore_global_ranges_pattern.Execute(name);
5353
}
5454

5555
bool CPPLanguageRuntime::IsAllowedRuntimeValue(ConstString name) {

0 commit comments

Comments
 (0)