Review fixes.

This commit is contained in:
vng 2015-11-11 18:17:04 +03:00
parent 584871b339
commit be92d9fddd
4 changed files with 16 additions and 6 deletions

View file

@ -184,9 +184,7 @@ UNIT_TEST(FBuilder_PointAddress)
{
classificator::Load();
char const * arr[][2] = {
{ "addr:housenumber", "39/79" }
};
char const * arr[][2] = { { "addr:housenumber", "39/79" } };
OsmElement e;
FillXmlElement(arr, ARRAY_SIZE(arr), &e);

View file

@ -5,6 +5,9 @@
#include "indexer/classificator.hpp"
#include "indexer/feature_data.hpp"
#include "std/string.hpp"
#include "std/vector.hpp"
namespace tests
{
@ -36,4 +39,4 @@ inline uint32_t GetType(StringIL const & lst)
return classif().GetTypeByPath(lst);
}
}
} // namespace tests

View file

@ -8,8 +8,15 @@
class Classificator;
class FeatureBuilder1;
namespace feature { class FeaturesCollector; }
namespace platform { class LocalCountryFile; }
namespace feature
{
class FeaturesCollector;
}
namespace platform
{
class LocalCountryFile;
}
class TestMwmBuilder
{

View file

@ -132,6 +132,8 @@ struct FeatureParamsBase
bool CheckValid() const;
string DebugString() const;
/// @return true if feature doesn't have any drawable strings (names, houses, etc).
bool IsEmptyNames() const;
template <class TSink>