Fix formatting.

llvm-svn: 319212
This commit is contained in:
Rui Ueyama 2017-11-28 20:01:30 +00:00
parent 3e03944f02
commit 28c65bc20b

View File

@ -34,8 +34,8 @@ std::vector<StringRef> lld::args::getStrings(opt::InputArgList &Args, int Id) {
return V;
}
uint64_t lld::args::getZOptionValue(opt::InputArgList &Args, int Id, StringRef Key,
uint64_t Default) {
uint64_t lld::args::getZOptionValue(opt::InputArgList &Args, int Id,
StringRef Key, uint64_t Default) {
for (auto *Arg : Args.filtered(Id)) {
std::pair<StringRef, StringRef> KV = StringRef(Arg->getValue()).split('=');
if (KV.first == Key) {