Review fixes

This commit is contained in:
Sergey Yershov 2015-05-27 13:24:40 +03:00 committed by Alex Zolotarev
parent 02a83e4cdb
commit 58156d064f
2 changed files with 5 additions and 3 deletions

View file

@ -37,7 +37,8 @@ bool FeatureBuilder1::IsGeometryClosed() const
m2::PointD FeatureBuilder1::GetGeometryCenter() const
{
// ASSERT ( IsGeometryClosed(), () );
//TODO(govako): Check reqirements in this assert
//ASSERT ( IsGeometryClosed(), () );
m2::PointD ret(0.0, 0.0);
points_t const & poly = GetGeometry();

View file

@ -156,8 +156,9 @@ protected:
struct StringTableRecord
{
// This important value got from documentation on O5M format
// If change it all will be broken
// This important value got from
// documentation ( http://wiki.openstreetmap.org/wiki/O5m#Strings ) on O5M format.
// If change it all will be broken.
enum { MaxEntrySize = 252 };
char key[MaxEntrySize];