mirror of https://github.com/aria2/aria2
Fix util::nextParam when compiled with recent Apple clang
parent
d87365efc6
commit
270f429838
|
@ -829,9 +829,9 @@ nextParam
|
|||
}
|
||||
}
|
||||
std::pair<std::string::const_iterator,
|
||||
std::string::const_iterator> namep;
|
||||
std::string::const_iterator> namep = std::make_pair(last, last);
|
||||
std::pair<std::string::const_iterator,
|
||||
std::string::const_iterator> valuep;
|
||||
std::string::const_iterator> valuep = std::make_pair(last, last);
|
||||
if(parmnameFirst == parmnameLast) {
|
||||
if(!eqFound) {
|
||||
parmnameFirst = first;
|
||||
|
|
Loading…
Reference in New Issue