2
1
Fork 0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2024-07-04 23:31:19 +01:00

bit_field: Fix a typo in the sample usage.

This commit is contained in:
Lioncash 2014-10-25 15:12:24 -04:00
parent 4615c73d15
commit 2dce9b2ead

View file

@ -68,7 +68,7 @@
* u32 hex;
*
* BitField<0,7,u32> first_seven_bits; // unsigned
* BitField<7,8,32> next_eight_bits; // unsigned
* BitField<7,8,u32> next_eight_bits; // unsigned
* BitField<3,15,s32> some_signed_fields; // signed
* };
*