patterns/ntag: Fixed Length type transform function

This commit is contained in:
Nik
2023-06-13 13:36:53 +02:00
committed by GitHub
parent acd2d4abb8
commit 1f8710b586

View File

@@ -77,7 +77,7 @@ struct Length {
u8 length;
} [[sealed, transform("transform_length"), format("transform_length")]];
fn transform_length(Length length) {
fn transform_length(ref auto length) {
return length.length;
};