mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-04 14:55:41 +02:00
Swapped arguments (#552)
Fixed swapped arguments in call of new ExtendedScannerInfo().
This commit is contained in:
parent
48804f5ed9
commit
147332763b
1 changed files with 1 additions and 1 deletions
|
@ -708,7 +708,7 @@ public abstract class CBuildConfiguration extends PlatformObject implements ICBu
|
||||||
for (int i = 0; i < macroFiles.length; ++i) {
|
for (int i = 0; i < macroFiles.length; ++i) {
|
||||||
macroFiles[i] = macroFileEntries[i].getFullMacroFilePath().toOSString();
|
macroFiles[i] = macroFileEntries[i].getFullMacroFilePath().toOSString();
|
||||||
}
|
}
|
||||||
return new ExtendedScannerInfo(symbolMap, includes, includeFiles, macroFiles);
|
return new ExtendedScannerInfo(symbolMap, includes, macroFiles, includeFiles);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Add table
Reference in a new issue