relax add_depend a little

master
Daniel Kolesa 2018-04-22 17:35:15 +02:00
parent 4b4839acb8
commit 230ece9fb6
1 changed files with 1 additions and 1 deletions

View File

@ -200,7 +200,7 @@ private:
if constexpr (std::is_constructible_v<std::string, R const &>) {
p_deps.emplace_back(v);
} else {
for (auto &sv: v) {
for (auto const &sv: v) {
p_deps.emplace_back(sv);
}
}