Fix warnings.

This commit is contained in:
Crozet Sébastien 2020-10-25 16:03:07 +01:00
parent 7af509ee8d
commit d7cb138e22
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
extern crate nalgebra as na;
use na::{DMatrix, Matrix2x3, Matrix3x2, RowVector3, Vector2};
use na::{DMatrix, Matrix2x3, RowVector3, Vector2};
fn main() {
// All the following matrices are equal but constructed in different ways.

View File

@ -129,7 +129,7 @@ mod tests {
#[test]
fn exp_complex() {
use nalgebra::{Complex, ComplexField, DMatrix, DVector, Matrix2, RealField};
use nalgebra::{Complex, DMatrix, DVector, Matrix2, RealField};
{
let z = Matrix2::<Complex<f64>>::zeros();