aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Commands/CommandObjectMultiword.cpp
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2021-06-24 11:06:42 +0300
committerMartin Storsjö <martin@martin.st>2021-06-25 00:22:01 +0300
commite50f9c419a84d1e58c38aa660c445395ad8056e6 (patch)
tree72909edae0f294900d1f18af4d33d0c930df9de0 /lldb/source/Commands/CommandObjectMultiword.cpp
parent3c6f8ca7c9ac99f1606fd0fdd21487675bf3f715 (diff)
downloadllvm-e50f9c419a84d1e58c38aa660c445395ad8056e6.zip
llvm-e50f9c419a84d1e58c38aa660c445395ad8056e6.tar.gz
llvm-e50f9c419a84d1e58c38aa660c445395ad8056e6.tar.bz2
[lldb] Rename StringRef _lower() method calls to _insensitive()
Diffstat (limited to 'lldb/source/Commands/CommandObjectMultiword.cpp')
-rw-r--r--lldb/source/Commands/CommandObjectMultiword.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectMultiword.cpp b/lldb/source/Commands/CommandObjectMultiword.cpp
index 3eafd00..a523fd0 100644
--- a/lldb/source/Commands/CommandObjectMultiword.cpp
+++ b/lldb/source/Commands/CommandObjectMultiword.cpp
@@ -98,7 +98,7 @@ bool CommandObjectMultiword::Execute(const char *args_string,
return result.Succeeded();
}
- if (sub_command.equals_lower("help")) {
+ if (sub_command.equals_insensitive("help")) {
this->CommandObject::GenerateHelpText(result);
return result.Succeeded();
}