Skip to content

Commit 5b5bb02

Browse files
Curve Fit - Avoid warnings in tests
GitHub issue #268.
1 parent 5bac3e9 commit 5b5bb02

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

lib/rust/mmscenegraph/tests/curvefit_degree_45.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@
1818
// ====================================================================
1919
//
2020

21+
#![allow(unused_imports)]
22+
#![allow(unused_variables)]
23+
#![allow(dead_code)]
24+
2125
mod common;
2226

2327
use anyhow::Result;

lib/rust/mmscenegraph/tests/curvefit_identity.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@
1818
// ====================================================================
1919
//
2020

21+
#![allow(unused_imports)]
22+
#![allow(unused_variables)]
23+
#![allow(dead_code)]
24+
2125
mod common;
2226

2327
use anyhow::Result;

lib/rust/mmscenegraph/tests/curvefit_linear_2_point.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@
1818
// ====================================================================
1919
//
2020

21+
#![allow(unused_imports)]
22+
#![allow(unused_variables)]
23+
#![allow(dead_code)]
24+
2125
mod common;
2226

2327
use anyhow::Result;

0 commit comments

Comments
 (0)