Replace {{}} with {}

IIRC we were only using {{}} because {} used to cause errors
on the FreeBSD buildbot.
This commit is contained in:
JosJuice
2017-06-03 18:14:22 +02:00
parent 4af514bb3c
commit 1c926dcae2
3 changed files with 8 additions and 8 deletions

View File

@ -211,7 +211,7 @@ std::map<Language, std::string> CVolumeDirectory::GetLongNames() const
{
std::string name = GetInternalName();
if (name.empty())
return {{}};
return {};
return {{Language::LANGUAGE_UNKNOWN, name}};
}