| ... | ... | @@ -659,7 +659,7 @@ pub fn SectionHeaderIterator(comptime ParseSource: anytype) type { |
| 659 | 659 | }; |
| 660 | 660 | } |
| 661 | 661 | |
| 662 | | pub fn int(is_64: bool, need_bswap: bool, int_32: anytype, int_64: anytype) @TypeOf(int_64) { |
| 662 | fn int(is_64: bool, need_bswap: bool, int_32: anytype, int_64: anytype) @TypeOf(int_64) { |
| 663 | 663 | if (is_64) { |
| 664 | 664 | if (need_bswap) { |
| 665 | 665 | return @byteSwap(int_64); |
| ... | ... | @@ -671,7 +671,7 @@ pub fn int(is_64: bool, need_bswap: bool, int_32: anytype, int_64: anytype) @Typ |
| 671 | 671 | } |
| 672 | 672 | } |
| 673 | 673 | |
| 674 | | pub fn int32(need_bswap: bool, int_32: anytype, comptime Int64: anytype) Int64 { |
| 674 | fn int32(need_bswap: bool, int_32: anytype, comptime Int64: anytype) Int64 { |
| 675 | 675 | if (need_bswap) { |
| 676 | 676 | return @byteSwap(int_32); |
| 677 | 677 | } else { |