core: Add u8 to the list of generated Value implementations (#392)

## Motivation

u8 had been forgotten from the list of automatically generated
implementations for the Value Trait. See bug report #389 

## Solution

Added u8 to the list of automatically generated implementations for the
Value Trait.

Fixes: #389
This commit is contained in:
Lucas Hermann 2019-10-19 00:12:14 +01:00 committed by Eliza Weisman
parent d3e0c06774
commit e48c14c7c7

View File

@ -314,7 +314,7 @@ macro_rules! impl_value {
impl_values! {
record_u64(u64),
record_u64(usize, u32, u16 as u64),
record_u64(usize, u32, u16, u8 as u64),
record_i64(i64),
record_i64(isize, i32, i16, i8 as i64),
record_bool(bool)