Skip to content

Commit f0b2c86

Browse files
committed
clippy fix
1 parent da97d38 commit f0b2c86

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lax/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ macro_rules! impl_lapack {
212212
fn householder(l: MatrixLayout, a: &mut [Self]) -> Result<Vec<Self>> {
213213
use qr::*;
214214
let work = HouseholderWork::<$s>::new(l)?;
215-
Ok(work.eval(a)?)
215+
work.eval(a)
216216
}
217217

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

0 commit comments

Comments
 (0)