Remove unnecessary mut binding.

This commit is contained in:
Sean Bowe 2018-03-06 09:39:56 -07:00
parent c253e51e3d
commit c31092ce7f
No known key found for this signature in database
GPG Key ID: 95684257D8F8B031
1 changed files with 1 additions and 1 deletions

View File

@ -441,7 +441,7 @@ impl<E: Engine> Num<E> {
) -> Self
{
let newval = match (self.value, bit.get_value()) {
(Some(mut curval), Some(mut bval)) => {
(Some(mut curval), Some(bval)) => {
if bval {
curval.add_assign(&coeff);
}