Minor comments fix.

This commit is contained in:
Alex Zolotarev 2016-03-09 19:06:49 +03:00 committed by Sergey Yershov
parent 2304bb7224
commit cc9446cecc
2 changed files with 2 additions and 1 deletions

View file

@ -267,6 +267,7 @@ bool Editor::Save(string const & fullFilePath) const
for (auto const & index : mwm.second)
{
FeatureTypeInfo const & fti = index.second;
// TODO: Do we really need to serialize deleted features in full details? Looks like mwm ID and meta fields are enough.
XMLFeature xf = fti.m_feature.ToXML();
xf.SetMWMFeatureIndex(index.first);
if (!fti.m_street.empty())

View file

@ -129,7 +129,7 @@ public:
uint8_t Get(uint64_t i) const override
{
// i can be greater than Size() for features created by user in the Editor.
// TODO(vng): Is there a better way inject it? Without this check search engine crashes here.
// May be there is a better way to inject this code. Without this check search engine crashes here.
//ASSERT_LESS(i, Size(), ());
if (i >= Size())
return 0;