我决定开摆

This commit is contained in:
shenjack 2024-01-12 19:49:55 +08:00
parent c746416c09
commit acb40e2f0f
Signed by: shenjack
GPG Key ID: 7B1134A979775551

View File

@ -217,9 +217,8 @@ impl<'value> Value<'value> {
9 => { 9 => {
// 好好好, list 嵌套 list 是吧 // 好好好, list 嵌套 list 是吧
let mut list = Vec::with_capacity(length as usize); let mut list = Vec::with_capacity(length as usize);
let mut data = data;
for _ in 0..length { for _ in 0..length {
let inner_list = Self::read_list(&mut data); let inner_list = Self::read_list(data);
} }
Self::List(ListContent::ListList(list)) Self::List(ListContent::ListList(list))
} }