I am using Boost Spirit X3 to create a programming language, but when I try to support Unicode, I get an error!
Here is an example of a simplified version of that program.
#define BOOST_SPIRIT_X3_UNICODE
#include <boost/spirit/home/x3.hpp>
namespace x3 = boost::spirit::x3;
struct sample : x3::symbols<unsigned> {
sample()
{
add("48", 10);
}
};
int main()
{
const std::string s("");
boost::u8_to_u32_iterator<std::string::const_iterator> first{cbegin(s)},
last{cend(s)};
x3::parse(first, last, sample{});
}
What should I do?
As you noticed, internally
char_encoding::unicode
employschar32_t
.So, first changing the
symbols
accordingly:Now the code fails calling into
case_compare
:As you can see it expects a
char32_t
reference, butu8_to_u32_iterator
returnsunsigned int
s (std::uint32_t
).Just for comparison / sanity check: https://godbolt.org/z/1zozxq96W
Luckily you can instruct the
u8_to_u32_iterator
to use another co-domain type:Live On Compiler Explorer
Prints