correcting indent

This commit is contained in:
krunal 2023-09-26 14:52:46 +05:30
parent c42970db13
commit 1b4452a6e1

View File

@ -3355,11 +3355,11 @@ Option<bool> Index::search(std::vector<query_tokens_t>& field_query_tokens, cons
auto& acc_facet = facets[fi];
for(auto & facet_kv: this_facet.result_map) {
if (group_limit) {
if(group_limit) {
// we have to add all group sets
acc_facet.hash_groups[facet_kv.first].insert(
this_facet.hash_groups[facet_kv.first].begin(),
this_facet.hash_groups[facet_kv.first].end()
this_facet.hash_groups[facet_kv.first].begin(),
this_facet.hash_groups[facet_kv.first].end()
);
} else {
size_t count = 0;