Skip to content

Commit de85fc7

Browse files
committed
Indentation fixes
1 parent e462847 commit de85fc7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

content/data-structures/OrderStatisticTree.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ using namespace __gnu_pbds;
1515

1616
template<class T>
1717
using Tree = tree<T, null_type, less<T>, rb_tree_tag,
18-
tree_order_statistics_node_update>;
18+
tree_order_statistics_node_update>;
1919

2020
void example() {
2121
Tree<int> t, t2; t.insert(8);

content/geometry/PolyhedronVolume.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
template<class V, class L>
1010
double signed_poly_volume(const V& p, const L& trilist) {
11-
double v = 0;
12-
trav(i, trilist) v += p[i.a].cross(p[i.b]).dot(p[i.c]);
13-
return v / 6;
11+
double v = 0;
12+
trav(i, trilist) v += p[i.a].cross(p[i.b]).dot(p[i.c]);
13+
return v / 6;
1414
}

0 commit comments

Comments
 (0)