mirror of
https://github.com/aria2/aria2.git
synced 2025-02-26 08:22:11 +00:00
Fix util::nextParam when compiled with recent Apple clang
This commit is contained in:
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
Block a user