src/tokenize.cpp(combineWithNext): propagate const modifier.

No functional change.
This commit is contained in:
Slava Semushin 2009-05-31 20:48:40 +07:00
parent aba7518aeb
commit fb0c217c3e
1 changed files with 1 additions and 1 deletions

View File

@ -368,7 +368,7 @@ bool Tokenizer::tokenize(std::istream &code, const char FileName[])
// Combine tokens..
for (Token *tok = _tokens; tok && tok->next(); tok = tok->next())
{
static const char* combineWithNext[][3] =
static const char * const combineWithNext[][3] =
{
{ "<", "<", "<<" },