forked from organicmaps/organicmaps
Review fixes.
This commit is contained in:
parent
584871b339
commit
be92d9fddd
4 changed files with 16 additions and 6 deletions
|
@ -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);
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Add table
Reference in a new issue