[lldb][NFC] makeArrayRef -> ArrayRef

makeArrayRef is deprecated.
This commit is contained in:
Arthur Eubanks
2023-03-23 11:28:49 -07:00
parent d557384b43
commit 088da8a0e5

View File

@@ -72,5 +72,5 @@ Status CommandOptionsProcessAttach::SetOptionValue(
}
llvm::ArrayRef<OptionDefinition> CommandOptionsProcessAttach::GetDefinitions() {
return llvm::makeArrayRef(g_process_attach_options);
return llvm::ArrayRef(g_process_attach_options);
}