mirror of
https://github.com/audacity/linuxdeploy.git
synced 2026-04-30 19:29:57 -05:00
Code style fixes
This commit is contained in:
@@ -56,13 +56,14 @@ namespace linuxdeploy {
|
||||
return split(s, '\n');
|
||||
}
|
||||
|
||||
static std::string join(const std::vector<std::string> &strings, const std::string &delimiter)
|
||||
{
|
||||
static std::string join(const std::vector<std::string> &strings, const std::string &delimiter) {
|
||||
std::string result;
|
||||
for (size_t i = 0; i < strings.size(); i++) {
|
||||
result += strings[i];
|
||||
if (i != strings.size() - 1)
|
||||
|
||||
if (i != strings.size() - 1) {
|
||||
result += delimiter;
|
||||
}
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user