TokenList::insertTokens: copy column also

This commit is contained in:
Daniel Marjamäki 2019-08-20 20:53:17 +02:00
parent 2c673bd380
commit 6815e38879
1 changed files with 1 additions and 0 deletions

View File

@ -313,6 +313,7 @@ void TokenList::insertTokens(Token *dest, const Token *src, nonneg int n)
dest->fileIndex(src->fileIndex());
dest->linenr(src->linenr());
dest->column(src->column());
dest->varId(src->varId());
dest->tokType(src->tokType());
dest->flags(src->flags());