From 6cce6daaddf6e125b485c924ab315f9f332a3833 Mon Sep 17 00:00:00 2001 From: Simon Gardling Date: Wed, 4 May 2022 13:30:51 -0400 Subject: [PATCH] remove outdated comment --- parsing/src/suggestions.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/parsing/src/suggestions.rs b/parsing/src/suggestions.rs index 008bc39..9bf6df2 100644 --- a/parsing/src/suggestions.rs +++ b/parsing/src/suggestions.rs @@ -29,8 +29,6 @@ pub fn split_function(input: &str) -> Vec { } // __REVIEW__ -// __OPTIMIZE__ -// takes up to 33% of performance in calls like `buffer.iter().cloned().collect::()` along with allocating `data` and `buffer` vectors pub fn split_function_chars(chars: &[char]) -> Vec { if chars.is_empty() { return Vec::new();