[editor] Added thread checker by @ygorshenin request.

This commit is contained in:
Alex Zolotarev 2016-03-09 13:02:36 +03:00 committed by Sergey Yershov
parent 0faa81ef57
commit 2304bb7224

View file

@ -26,6 +26,7 @@
#include "base/logging.hpp"
#include "base/stl_helpers.hpp"
#include "base/string_utils.hpp"
#include "base/thread_checker.hpp"
#include "base/timer.hpp"
#include "std/algorithm.hpp"
@ -692,6 +693,7 @@ NewFeatureCategories Editor::GetNewFeatureCategories() const
FeatureID Editor::GenerateNewFeatureId(MwmSet::MwmId const & id)
{
DECLARE_AND_ASSERT_THREAD_CHECKER("GenerateNewFeatureId is single-threaded.");
// TODO(vng): Double-check if new feature indexes should uninterruptedly continue after existing indexes in mwm file.
uint32_t featureIndex = kStartIndexForCreatedFeatures;
auto const found = m_features.find(id);