mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-20 13:37:28 +02:00
Remove useless string initialization.
This commit is contained in:
parent
f4f4f51f1a
commit
19ac86e206
5 changed files with 7 additions and 7 deletions
|
|
@ -90,7 +90,7 @@ static enum RetFormat ParseDataFormat(std::string& param, const std::string& str
|
|||
|
||||
static std::string AvailableDataFormatsString()
|
||||
{
|
||||
std::string formats = "";
|
||||
std::string formats;
|
||||
for (unsigned int i = 0; i < ARRAYLEN(rf_names); i++)
|
||||
if (strlen(rf_names[i].name) > 0) {
|
||||
formats.append(".");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue