master
Daniel Kolesa 2016-08-02 22:40:24 +01:00
parent f90a2fe474
commit e22c8074b8
1 changed files with 17 additions and 15 deletions

View File

@ -357,7 +357,8 @@ private:
ConstCharRange tname ConstCharRange tname
) { ) {
String repd; String repd;
for (auto &sr: rlist.iter()) for (auto &target: sr.rule->deps.iter()) { for (auto &sr: rlist.iter()) {
for (auto &target: sr.rule->deps.iter()) {
ConstCharRange atgt = target.iter(); ConstCharRange atgt = target.iter();
repd.clear(); repd.clear();
auto lp = ostd::find(atgt, '%'); auto lp = ostd::find(atgt, '%');
@ -376,6 +377,7 @@ private:
return r; return r;
} }
} }
}
return 0; return 0;
} }