mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Fix illegal character encoding issue.
This commit is contained in:
parent
a7728f959f
commit
6f68f6e171
1 changed files with 3 additions and 3 deletions
|
@ -855,9 +855,9 @@ public class ExtractFunctionRefactoring extends CRefactoring {
|
|||
}
|
||||
|
||||
private void addParameterIfPossible(List<IASTInitializerClause> args,
|
||||
List<IASTName> declarations, NameInformation nameInfо) {
|
||||
if (!nameInfо.isDeclarationExtracted()) {
|
||||
IASTName declaration = nameInfо.getDeclaration();
|
||||
List<IASTName> declarations, NameInformation nameInfo) {
|
||||
if (!nameInfo.isDeclarationExtracted()) {
|
||||
IASTName declaration = nameInfo.getDeclaration();
|
||||
if (!declarations.contains(declaration)) {
|
||||
declarations.add(declaration);
|
||||
IASTIdExpression expression = new CPPASTIdExpression();
|
||||
|
|
Loading…
Add table
Reference in a new issue