From 5070612f8359285f922038d0e7a79b7fc1c7f57d Mon Sep 17 00:00:00 2001 From: tatiana-yan Date: Mon, 15 Oct 2018 15:40:35 +0300 Subject: [PATCH] [search] Disable check CitiesBoundariesTable was generated with actual code until new World.mwm generation. --- search/cities_boundaries_table.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/search/cities_boundaries_table.cpp b/search/cities_boundaries_table.cpp index 8327cbb523..b72cebbab3 100644 --- a/search/cities_boundaries_table.cpp +++ b/search/cities_boundaries_table.cpp @@ -70,11 +70,13 @@ bool CitiesBoundariesTable::Load() return false; } - ASSERT_EQUAL(all.size(), localities.PopCount(), ()); + // Disabled until World.mwm generation with new code. + // ASSERT_EQUAL(all.size(), localities.PopCount(), ()); if (all.size() != localities.PopCount()) { - LOG(LERROR, - ("Wrong number of boundaries, expected:", localities.PopCount(), "actual:", all.size())); + // Disabled until World.mwm generation with new code. + // LOG(LERROR, + // ("Wrong number of boundaries, expected:", localities.PopCount(), "actual:", all.size())); return false; }