std.meta.FieldType -> @FieldType

This commit is contained in:
Андрей Краевский
2025-03-27 06:49:38 +03:00
committed by GitHub
parent db7db48028
commit aac800ec65
13 changed files with 46 additions and 46 deletions

View File

@@ -565,7 +565,7 @@ pub fn MultiArrayList(comptime T: type) type {
}
fn FieldType(comptime field: Field) type {
return meta.fieldInfo(Elem, field).type;
return @FieldType(Elem, @tagName(field));
}
const Entry = entry: {