Skip to content

Commit b4354ed

Browse files
committed
Remove min/max from testing
1 parent 7a631e8 commit b4354ed

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

node-graph/gcore/src/ops.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -338,8 +338,6 @@ fn equals<U: core::cmp::PartialEq<T>, T>(
338338
_: impl Ctx,
339339
#[implementations(f64, &f64, f32, &f32, u32, &u32, DVec2, &DVec2, &str)] value: T,
340340
#[implementations(f64, &f64, f32, &f32, u32, &u32, DVec2, &DVec2, &str)]
341-
#[min(100.)]
342-
#[max(200.)]
343341
other_value: U,
344342
) -> bool {
345343
other_value == value
@@ -351,8 +349,6 @@ fn not_equals<U: core::cmp::PartialEq<T>, T>(
351349
_: impl Ctx,
352350
#[implementations(f64, &f64, f32, &f32, u32, &u32, DVec2, &DVec2, &str)] value: T,
353351
#[implementations(f64, &f64, f32, &f32, u32, &u32, DVec2, &DVec2, &str)]
354-
#[min(100.)]
355-
#[max(200.)]
356352
other_value: U,
357353
) -> bool {
358354
other_value != value

0 commit comments

Comments
 (0)