Review fixes.

This commit is contained in:
Yuri Gorshenin 2017-02-21 16:46:17 +03:00
parent 8f2e48941c
commit f62143c4c6

View file

@ -319,6 +319,10 @@ struct OneOfRule final : public Rule
os << "[ one of:";
for (size_t i = 0; i < static_cast<size_t>(ftypes::IsHotelChecker::Type::Count); ++i)
{
unsigned const bit = 1U << i;
if ((m_types & bit) == 0)
continue;
auto const type = static_cast<ftypes::IsHotelChecker::Type>(i);
os << " " << ftypes::IsHotelChecker::GetHotelTypeTag(type);
}