src/tokenize.cpp(combineWithNext): propagate const modifier.
No functional change.
This commit is contained in:
parent
aba7518aeb
commit
fb0c217c3e
|
@ -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] =
|
||||
{
|
||||
{ "<", "<", "<<" },
|
||||
|
||||
|
|
Loading…
Reference in New Issue