Skip to content

Commit

Permalink
Bump Sum and Product for Option<T> to 1.37
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed May 28, 2019
1 parent 422a4c0 commit 9f8d934
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libcore/iter/traits/accum.rs
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ where
}
}

#[stable(feature = "iter_arith_traits_option", since = "1.35.0")]
#[stable(feature = "iter_arith_traits_option", since = "1.37.0")]
impl<T, U> Sum<Option<U>> for Option<T>
where
T: Sum<U>,
Expand All @@ -318,7 +318,7 @@ where
}
}

#[stable(feature = "iter_arith_traits_option", since = "1.35.0")]
#[stable(feature = "iter_arith_traits_option", since = "1.37.0")]
impl<T, U> Product<Option<U>> for Option<T>
where
T: Product<U>,
Expand Down

0 comments on commit 9f8d934

Please sign in to comment.