aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/common/bit_field.h
diff options
context:
space:
mode:
authorGravatar Lioncash <mathew1800@gmail.com>2014-10-25 15:12:24 -0400
committerGravatar Lioncash <mathew1800@gmail.com>2014-10-25 15:18:34 -0400
commit2dce9b2eadaf31fdd4a9a30eaa2dbcb9fd38c165 (patch)
treea85c9f9699d10f7b43e92df27aac25cc6261b5f2 /src/common/bit_field.h
parent4615c73d15f6f27c5e275c57dcafcb56355b9c2d (diff)
bit_field: Fix a typo in the sample usage.
Diffstat (limited to 'src/common/bit_field.h')
-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 b6f0179c..9e02210f 100644
--- a/src/common/bit_field.h
+++ b/src/common/bit_field.h
@@ -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
* };
*