mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-12-01 18:16:14 +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…
Reference in a new issue