mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Partial fix for 102602 pre-#included files aren't built by quick parser
This commit is contained in:
parent
f04e2ecde3
commit
87308501ad
1 changed files with 1 additions and 1 deletions
|
@ -1289,7 +1289,7 @@ abstract class BaseScanner implements IScanner {
|
|||
}
|
||||
|
||||
macroFilesInitialized = true;
|
||||
if (einfo.getIncludeFiles() != null
|
||||
if (parserMode != ParserMode.QUICK_PARSE && einfo.getIncludeFiles() != null
|
||||
&& einfo.getIncludeFiles().length > 0)
|
||||
preIncludeFiles = Arrays.asList(einfo.getIncludeFiles()).iterator();
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue