Skip to content

Commit 14ed754

Browse files
Merge branch 'feature/segtree' into feature/lazysegtree
2 parents 707b56d + 3a43da6 commit 14ed754

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/segtree.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ pub trait Monoid {
99
fn identity() -> Self::S;
1010
fn binary_operation(a: Self::S, b: Self::S) -> Self::S;
1111
}
12-
pub struct Max<S>(PhantomData<fn() -> S>);
1312

13+
pub struct Max<S>(PhantomData<fn() -> S>);
1414
// TODO We should not restrict to integral
1515
impl<S> Monoid for Max<S>
1616
where

0 commit comments

Comments
 (0)