From d7470caa4c6e94d9d9ed3b7a80407d1b818c2eaf Mon Sep 17 00:00:00 2001 From: Jack Spira Date: Sun, 5 Sep 2021 12:12:00 -0700 Subject: [PATCH] rebased and minor clippy fix --- imgui-examples/examples/long_list.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imgui-examples/examples/long_list.rs b/imgui-examples/examples/long_list.rs index 62791cf..79278af 100644 --- a/imgui-examples/examples/long_list.rs +++ b/imgui-examples/examples/long_list.rs @@ -11,7 +11,7 @@ use imgui::*; mod support; fn main() { - let lots_of_words: Vec = (0..10000).map(|x| format!("Line {}", x).into()).collect(); + let lots_of_words: Vec = (0..10000).map(|x| format!("Line {}", x)).collect(); let system = support::init(file!()); system.main_loop(move |_, ui| {