forked from organicmaps/organicmaps
Review fixes.
This commit is contained in:
parent
18942cf07c
commit
1d44465080
2 changed files with 7 additions and 4 deletions
|
@ -96,7 +96,7 @@ namespace stats
|
|||
}, FeatureType::BEST_GEOMETRY);
|
||||
}
|
||||
|
||||
bool hasName = f.GetNames().CountLangs() != 0;
|
||||
auto const hasName = f.GetNames().CountLangs() != 0;
|
||||
|
||||
m_info.m_byGeomType[f.GetGeomType()].Add(allSize, len, area, hasName);
|
||||
|
||||
|
|
|
@ -10,9 +10,6 @@ namespace stats
|
|||
{
|
||||
struct GeneralInfo
|
||||
{
|
||||
uint64_t m_count, m_size, m_names;
|
||||
double m_length, m_area;
|
||||
|
||||
GeneralInfo() : m_count(0), m_size(0), m_names(0), m_length(0), m_area(0) {}
|
||||
|
||||
void Add(uint64_t szBytes, double len = 0, double area = 0, bool hasName = false)
|
||||
|
@ -27,6 +24,12 @@ namespace stats
|
|||
++m_names;
|
||||
}
|
||||
}
|
||||
|
||||
uint64_t m_count;
|
||||
uint64_t m_size;
|
||||
uint64_t m_names;
|
||||
double m_length;
|
||||
double m_area;
|
||||
};
|
||||
|
||||
template <class T, int Tag>
|
||||
|
|
Loading…
Add table
Reference in a new issue