Remove `#[must_use]` on `__add2`

It doesn't actually work on functions yet, and nightly now warns that it
is experimental, behind `#[feature(fn_must_use)]`.
This commit is contained in:
Josh Stone 2017-09-21 17:26:20 -07:00
parent 4896746fec
commit 7679cb86fb
1 changed files with 0 additions and 1 deletions

View File

@ -123,7 +123,6 @@ pub fn div_rem_digit(mut a: BigUint, b: BigDigit) -> (BigUint, BigDigit) {
}
// Only for the Add impl:
#[must_use]
#[inline]
pub fn __add2(a: &mut [BigDigit], b: &[BigDigit]) -> BigDigit {
debug_assert!(a.len() >= b.len());