compile function can't take a const parser

This commit is contained in:
Sven M. Hallberg 2013-05-08 18:01:55 +02:00
parent af4971b265
commit 65ee3593bd
5 changed files with 8 additions and 8 deletions

View file

@ -190,7 +190,7 @@ HParseResult* h_do_parse(const HParser* parser, HParseState *state) {
}
}
int h_packrat_compile(HAllocator* mm__, const HParser* parser, const void* params) {
int h_packrat_compile(HAllocator* mm__, HParser* parser, const void* params) {
return 0; // No compilation necessary, and everything should work
// out of the box.
}