Fix style

This commit is contained in:
alesapin 2021-05-17 14:42:14 +03:00
parent d8994350c1
commit 023b592f97

View File

@ -366,9 +366,9 @@ std::vector<PartMovesBetweenShardsOrchestrator::Entry> PartMovesBetweenShardsOrc
{
std::lock_guard lock(state_mutex);
auto res = std::vector<Entry>();
std::vector<Entry> res;
for (const auto& e : entries)
for (const auto & e : entries)
res.push_back(e.second);
return res;