From e83f71bf82d2a5ddda78b42f42906d469b11dbcf Mon Sep 17 00:00:00 2001 From: dbr Date: Wed, 10 Feb 2021 18:24:35 +1100 Subject: [PATCH] Fix clippy lint about redundant .into() --- imgui/src/draw_list.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imgui/src/draw_list.rs b/imgui/src/draw_list.rs index b3a1637..e59075e 100644 --- a/imgui/src/draw_list.rs +++ b/imgui/src/draw_list.rs @@ -912,7 +912,7 @@ impl<'ui> ImageRounded<'ui> { self.uv_min.into(), self.uv_max.into(), self.col.into(), - self.rounding.into(), + self.rounding, self.rounding_corners.bits(), ); }