grep: fix tab2, use int instead of Rune to be compatible to 16bit rune system

This commit is contained in:
cinap_lenrek 2014-03-30 18:11:51 +02:00
parent 4d0a446123
commit 0c1dd57544

View file

@ -131,17 +131,17 @@ loop:
}
}
Rune tab1[] =
int tab1[] =
{
0x007f,
0x07ff,
0xffff,
};
Rune tab2[] =
int tab2[] =
{
0x003f,
0x0fff,
0xffff,
0x3ffff,
};
Re2