forked from organicmaps/organicmaps
Fix gcc build
This commit is contained in:
parent
01183fb781
commit
104ea4bd32
1 changed files with 2 additions and 1 deletions
|
@ -3,6 +3,7 @@
|
|||
#include "base/logging.hpp"
|
||||
|
||||
#include <vector>
|
||||
#include <utility>
|
||||
|
||||
namespace storage
|
||||
{
|
||||
|
@ -50,6 +51,6 @@ std::optional<CountryTree> LoadCountriesFromFile(std::string const & path)
|
|||
if (res == -1)
|
||||
return {};
|
||||
|
||||
return countries;
|
||||
return std::optional<CountryTree>(std::move(countries));
|
||||
}
|
||||
} // namespace storage
|
||||
|
|
Loading…
Add table
Reference in a new issue