summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2014-10-24 13:29:59 -0400
committerLioncash <mathew1800@gmail.com>2014-10-24 13:33:02 -0400
commitc0c835d0b67152c95648dcd45bfa8c5ec4f19fec (patch)
tree030551c1ef6853abffffb7ac34c4936d177696e1 /Source
parent91c4b0c40b877b36a13be766be5a302ee6c40bab (diff)
BitField: Fix a typo in the sample usage.
Diffstat (limited to 'Source')
-rw-r--r--Source/Core/Common/BitField.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/BitField.h b/Source/Core/Common/BitField.h
index 8ec80de9c0..9e1f094db4 100644
--- a/Source/Core/Common/BitField.h
+++ b/Source/Core/Common/BitField.h
@@ -69,7 +69,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
* };
*