build: add missing static in tokenizer

master
Andrew Kelley 2016-09-06 10:58:42 -04:00
parent 9dc9e5bfb0
commit 1a1991371a
1 changed files with 1 additions and 1 deletions

View File

@ -379,7 +379,7 @@ static uint32_t get_digit_value(uint8_t c) {
return UINT32_MAX;
}
void handle_string_escape(Tokenize *t, uint8_t c) {
static void handle_string_escape(Tokenize *t, uint8_t c) {
if (t->cur_tok->id == TokenIdCharLiteral) {
t->cur_tok->data.char_lit.c = c;
t->state = TokenizeStateCharLiteralEnd;