Closed hwooo closed 3 years ago
I've found solution.
static const uint8_t* skip_prefixes(const uint8_t* first, const uint8_t* last) noexcept
{
...
return std::find(std::begin(skip_table), std::end(skip_table), byte) == std::end(skip_table);
}); // Add closing parentheses and semicolon
}
The error occrus in here:
But Visual Studio doesn't notify any syntax error. I have no idea what's the problem.