From c0c835d0b67152c95648dcd45bfa8c5ec4f19fec Mon Sep 17 00:00:00 2001 From: Lioncash Date: Fri, 24 Oct 2014 13:29:59 -0400 Subject: [PATCH] BitField: Fix a typo in the sample usage. --- Source/Core/Common/BitField.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 * }; *