We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent abb1987 commit 4e4db50Copy full SHA for 4e4db50
1 file changed
lib/clangimport.cpp
@@ -1201,7 +1201,7 @@ Token * clangimport::AstNode::createTokensCall(TokenList *tokenList)
1201
Token *f;
1202
if (nodeType == CXXOperatorCallExpr) {
1203
firstParam = 2;
1204
- Token *obj = children[1]->createTokens(tokenList);
+ Token *obj = getChild(1)->createTokens(tokenList);
1205
Token *dot = addtoken(tokenList, ".");
1206
Token *op = getChild(0)->createTokens(tokenList);
1207
dot->astOperand1(obj);
0 commit comments