diff options
| author | 2014-10-25 21:19:43 +0200 | |
|---|---|---|
| committer | 2014-10-25 21:19:43 +0200 | |
| commit | a7a57c04c6448081d5745283de134db56702b344 (patch) | |
| tree | 9a3878adddd400870ab9ef65b9b36d378691b32b | |
| parent | Merge pull request #148 from archshift/no-cstring (diff) | |
| parent | bit_field: Fix a typo in the sample usage. (diff) | |
| download | yuzu-a7a57c04c6448081d5745283de134db56702b344.tar.gz yuzu-a7a57c04c6448081d5745283de134db56702b344.tar.xz yuzu-a7a57c04c6448081d5745283de134db56702b344.zip | |
Merge pull request #150 from lioncash/typo
bit_field: Fix a typo in the sample usage.
Diffstat (limited to '')
| -rw-r--r-- | src/common/bit_field.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/bit_field.h b/src/common/bit_field.h index b6f0179c6..9e02210f9 100644 --- a/src/common/bit_field.h +++ b/src/common/bit_field.h | |||
| @@ -68,7 +68,7 @@ | |||
| 68 | * u32 hex; | 68 | * u32 hex; |
| 69 | * | 69 | * |
| 70 | * BitField<0,7,u32> first_seven_bits; // unsigned | 70 | * BitField<0,7,u32> first_seven_bits; // unsigned |
| 71 | * BitField<7,8,32> next_eight_bits; // unsigned | 71 | * BitField<7,8,u32> next_eight_bits; // unsigned |
| 72 | * BitField<3,15,s32> some_signed_fields; // signed | 72 | * BitField<3,15,s32> some_signed_fields; // signed |
| 73 | * }; | 73 | * }; |
| 74 | * | 74 | * |