From 49f2ee1930e5b2c154ff12b8ed571eea9c1f24ec Mon Sep 17 00:00:00 2001 From: Viktor Govako Date: Sun, 18 Dec 2022 11:59:18 +0100 Subject: [PATCH] Minor fix. Signed-off-by: Viktor Govako --- platform/country_file.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/platform/country_file.cpp b/platform/country_file.cpp index 08de611a9a..79300cbcf8 100644 --- a/platform/country_file.cpp +++ b/platform/country_file.cpp @@ -1,7 +1,5 @@ #include "platform/country_file.hpp" -#include "platform/mwm_version.hpp" - #include "base/assert.hpp" #include @@ -34,7 +32,7 @@ CountryFile::CountryFile(std::string name) } CountryFile::CountryFile(std::string name, MwmSize size, std::string sha1) -: m_name(std::move(name)), m_mapSize(size), m_sha1(sha1) + : m_name(std::move(name)), m_mapSize(size), m_sha1(std::move(sha1)) { }