[generator:regions] Fi warning: local variable 'isoCode' will be copied despite being returned by name [-Wreturn-std-move]

This commit is contained in:
Anatoly Serdtcev 2019-06-27 17:19:47 +03:00 committed by gmoryes
parent b07cb62333
commit 9ac133be0b

View file

@ -94,7 +94,7 @@ boost::optional<std::string> Region::GetIsoCode() const
{
if (m_placeLabel)
{
if (auto && isoCode = m_placeLabel->GetIsoCode())
if (auto isoCode = m_placeLabel->GetIsoCode())
return isoCode;
}