code style fix

This commit is contained in:
igor.lapko 2018-11-01 13:42:15 +02:00
parent d603cb1eb8
commit 2d565f1099

View File

@ -1475,9 +1475,8 @@ void NO_INLINE Aggregator::mergeDataImpl(
Table & table_src,
Arena * arena) const
{
decltype(table_src.end()) end = table_src.end();
for (auto it = table_src.begin(); it != end; ++it)
for (auto it = table_src.begin(), end = table_src.end(); it != end; ++it)
{
decltype(it) res_it;
bool inserted;