Skip to content

Commit c1216de

Browse files
committed
zcore: style cleanup in GAL/AL filter functions
1 parent 52e21f5 commit c1216de

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

exch/zcore/ab_tree.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -546,7 +546,8 @@ BOOL ab_tree_match_minids(const ab_tree::ab_base *pbase, uint32_t container_id,
546546
if (container_id == ab_tree::minid::SC_GAL) {
547547
for (auto it = pbase->ubegin(); it != pbase->uend(); ++it) {
548548
ab_tree::ab_node node(it);
549-
if (node.hidden() & AB_HIDE_FROM_GAL || !ab_tree_match_node(node, pfilter))
549+
if (node.hidden() & AB_HIDE_FROM_GAL ||
550+
!ab_tree_match_node(node, pfilter))
550551
continue;
551552
tlist.push_back(*it);
552553
}
@@ -559,7 +560,7 @@ BOOL ab_tree_match_minids(const ab_tree::ab_base *pbase, uint32_t container_id,
559560
}
560561
for (ab_tree::minid mid : node) {
561562
ab_tree::ab_node child(pbase, mid);
562-
if(child.type() >= ab_tree::abnode_type::containers ||
563+
if (child.type() >= ab_tree::abnode_type::containers ||
563564
child.hidden() & AB_HIDE_FROM_AL ||
564565
!ab_tree_match_node(child, pfilter))
565566
continue;

0 commit comments

Comments
 (0)