mirror of
https://github.com/NixOS/nix
synced 2025-07-05 20:41:47 +02:00
dropEmptyInitThenConcatStringsSep -> concatStringSep: tokens from tokenizeString are not empty
This commit is contained in:
parent
0fe3525223
commit
4029426ca8
1 changed files with 1 additions and 1 deletions
|
@ -154,7 +154,7 @@ static void parseConfigFiles(const std::string & contents, const std::string & p
|
||||||
|
|
||||||
parsedContents.push_back({
|
parsedContents.push_back({
|
||||||
std::move(name),
|
std::move(name),
|
||||||
dropEmptyInitThenConcatStringsSep(" ", Strings(i, tokens.end())),
|
concatStringsSep(" ", Strings(i, tokens.end())),
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue