Skip to content
Snippets Groups Projects
Commit 519d5650 authored by Andrea Shepard's avatar Andrea Shepard
Browse files

Fix signedness of Ch() signature in C++ bindings

parent 859b00a3
No related branches found
No related tags found
No related merge requests found
......@@ -93,7 +93,7 @@ namespace hammer {
static inline Parser Token(const uint8_t *buf, size_t len) {
return Parser(h_token(buf, len));
}
static inline Parser Ch(char ch) {
static inline Parser Ch(uint8_t ch) {
return Parser(h_ch(ch));
}
static inline Parser ChRange(uint8_t lower, uint8_t upper) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment