1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-03 14:25:37 +02:00

Don't use _ as identifier.

Change-Id: I0ae0462a47ad421ae1baae0dadfa0b5c7489d952
Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
This commit is contained in:
Alexander Kurtakov 2017-03-22 22:44:33 +02:00 committed by Marc-Andre Laperle
parent 7eaabfe557
commit 4d47bff054

View file

@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2008, 2013 Institute for Software, HSR Hochschule fuer Technik
* Copyright (c) 2008, 2017 Institute for Software, HSR Hochschule fuer Technik
* Rapperswil, University of applied sciences and others
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
@ -82,7 +82,7 @@ public class ExpressionExtractor extends FunctionExtractor {
}
@Override
public IASTDeclSpecifier determineReturnType(IASTNode extractedNode, NameInformation _,
public IASTDeclSpecifier determineReturnType(IASTNode extractedNode, NameInformation nameInfo,
List<IASTPointerOperator> pointerOperators) {
IType returnType = determineReturnType(extractedNode);
INodeFactory factory = extractedNode.getTranslationUnit().getASTNodeFactory();