From 4aa3effbf1a0db4ce433eab75d50848a230ed7e5 Mon Sep 17 00:00:00 2001 From: mat Date: Sun, 12 May 2024 20:07:37 +0000 Subject: [PATCH] add comment for min alloc size --- simdnbt/src/borrow/tag_alloc.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/simdnbt/src/borrow/tag_alloc.rs b/simdnbt/src/borrow/tag_alloc.rs index ed404d6..4874074 100644 --- a/simdnbt/src/borrow/tag_alloc.rs +++ b/simdnbt/src/borrow/tag_alloc.rs @@ -25,6 +25,7 @@ use crate::Mutf8Str; use super::{NbtCompound, NbtList, NbtTag}; +// this value appears to have the best results on my pc when testing with complex_player.dat const MIN_ALLOC_SIZE: usize = 1024; #[derive(Default)]