Skip to content

Commit ef8e8b6

Browse files
committed
indent
1 parent a6ed769 commit ef8e8b6

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/t8_schemes/t8_standalone/t8_standalone_implementation.hxx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -652,15 +652,16 @@ struct t8_standalone_scheme
652652
const int length = element_get_len (level);
653653
T8_ASSERT (0 <= el->level && el->level <= T8_ELEMENT_MAXLEVEL[TEclass]);
654654

655-
int cube_id = 0;
655+
int cube_id = 0;
656656
for (int idim = 0; idim < T8_ELEMENT_DIM[TEclass]; idim++) {
657657
cube_id |= (el->coords[idim] & length) ? (1 << idim) : 0;
658658
}
659659
int child_id;
660660
if constexpr (T8_ELEMENT_NUM_EQUATIONS[TEclass]) {
661661
u_int8_t type = element_compute_type_at_level (el, level);
662662
child_id = t8_element_type_cubeid_to_Iloc<TEclass>[type][cube_id];
663-
}else{
663+
}
664+
else {
664665
child_id = cube_id;
665666
}
666667
return child_id;

0 commit comments

Comments
 (0)