summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Tony Wasserka2014-10-25 21:19:43 +0200
committerGravatar Tony Wasserka2014-10-25 21:19:43 +0200
commita7a57c04c6448081d5745283de134db56702b344 (patch)
tree9a3878adddd400870ab9ef65b9b36d378691b32b
parentMerge pull request #148 from archshift/no-cstring (diff)
parentbit_field: Fix a typo in the sample usage. (diff)
downloadyuzu-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.h2
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 *