mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-23 22:53:43 +00:00
* ADL for AlmostEqual* and use math:: instead of base:: Signed-off-by: Alexander Borsuk <me@alex.bio>
18 lines
361 B
C++
18 lines
361 B
C++
#include "testing/testing.hpp"
|
|
|
|
#include "storage/storage_tests/helpers.hpp"
|
|
|
|
#include "storage/country_info_getter.hpp"
|
|
|
|
#include "platform/platform.hpp"
|
|
|
|
#include <memory>
|
|
|
|
namespace storage
|
|
{
|
|
std::unique_ptr<storage::CountryInfoGetter> CreateCountryInfoGetter()
|
|
{
|
|
return CountryInfoReader::CreateCountryInfoGetter(GetPlatform());
|
|
}
|
|
} // namespace storage
|