make hex rules const
This commit is contained in:
parent
23ba18ead2
commit
cad029bf7c
1 changed files with 2 additions and 2 deletions
|
@ -83,8 +83,8 @@ using x3::hex;
|
|||
using x3::eol;
|
||||
using x3::no_skip;
|
||||
|
||||
x3::uint_parser<uchar, 16, 4, 4> hex4;
|
||||
x3::uint_parser<uchar, 16, 8, 8> hex8;
|
||||
x3::uint_parser<uchar, 16, 4, 4> const hex4;
|
||||
x3::uint_parser<uchar, 16, 8, 8> const hex8;
|
||||
|
||||
// start rule
|
||||
unicode_string_grammar_type const unicode_string("Unicode String");
|
||||
|
|
Loading…
Reference in a new issue