From 1b4452a6e1795b1ba84d930fc8c79fe6c6e0aa26 Mon Sep 17 00:00:00 2001 From: krunal Date: Tue, 26 Sep 2023 14:52:46 +0530 Subject: [PATCH] correcting indent --- src/index.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/index.cpp b/src/index.cpp index 132c5f46..15dcaabd 100644 --- a/src/index.cpp +++ b/src/index.cpp @@ -3355,11 +3355,11 @@ Option Index::search(std::vector& 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;