Review fixes.

This commit is contained in:
Maksim Andrianov 2019-05-24 18:30:57 +03:00 committed by mpimenov
parent 18942cf07c
commit 1d44465080
2 changed files with 7 additions and 4 deletions

View file

@ -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);

View file

@ -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>