Skip to content

Commit

Permalink
clippy fix
Browse files Browse the repository at this point in the history
  • Loading branch information
termoshtt committed Sep 26, 2022
1 parent da97d38 commit f0b2c86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lax/src/lib.rs
Expand Up @@ -212,7 +212,7 @@ macro_rules! impl_lapack {
fn householder(l: MatrixLayout, a: &mut [Self]) -> Result<Vec<Self>> {
use qr::*;
let work = HouseholderWork::<$s>::new(l)?;
Ok(work.eval(a)?)
work.eval(a)
}

fn q(l: MatrixLayout, a: &mut [Self], tau: &[Self]) -> Result<()> {
Expand Down

0 comments on commit f0b2c86

Please sign in to comment.