use std::uint8_t as an attribute for hex2 parser
This commit is contained in:
parent
4c31bd16d2
commit
a98d1b8071
1 changed files with 1 additions and 1 deletions
|
@ -105,7 +105,7 @@ using x3::char_;
|
|||
using x3::eol;
|
||||
using x3::no_skip;
|
||||
|
||||
x3::uint_parser<char, 16, 2, 2> const hex2 {};
|
||||
x3::uint_parser<std::uint8_t, 16, 2, 2> const hex2 {};
|
||||
x3::uint_parser<std::uint16_t, 16, 4, 4> const hex4 {};
|
||||
x3::uint_parser<uchar, 16, 8, 8> const hex8 {};
|
||||
|
||||
|
|
Loading…
Reference in a new issue