forked from OSchip/llvm-project
Unbreak the NetBSD build after recent changes
Similar to r281922 "Try to fix freebsd and android builds." Replace .AppendArgument(cstr) with .AppendArgument(llvm::StringRef(cstr)) llvm-svn: 282032
This commit is contained in:
parent
5653e5dffc
commit
d4487347e3
|
@ -110,7 +110,7 @@ static bool GetNetBSDProcessArgs(const ProcessInstanceInfoMatch *match_info_ptr,
|
||||||
if (!cstr)
|
if (!cstr)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
proc_args.AppendArgument(cstr);
|
proc_args.AppendArgument(llvm::StringRef(cstr));
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in New Issue