Unnamed repository; edit this file 'description' to name the repository.
-rw-r--r--crates/ide/src/annotations.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ide/src/annotations.rs b/crates/ide/src/annotations.rs
index 2650c3ef01..5c951b85a1 100644
--- a/crates/ide/src/annotations.rs
+++ b/crates/ide/src/annotations.rs
@@ -116,7 +116,7 @@ pub(crate) fn annotations(
}
if config.annotate_enum_variant_references {
- let mut enum_variants_metadata: Vec<(TextRange, TextSize)> = Vec::new();
+ let mut enum_variants_metadata: Vec<(TextRange, TextSize)> = Vec::with_capacity(ranges_enum_variants.len());
for range_enum_variant in ranges_enum_variants.into_iter() {
let (range, offset) = match range_enum_variant {
Some(range) => (range, range.start()),