mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Fixed broken tests.
This commit is contained in:
parent
ca69e0b6e9
commit
72db9fbe93
1 changed files with 1 additions and 1 deletions
|
@ -1822,7 +1822,7 @@ public class CPreprocessor implements ILexerLog, IScanner, IAdaptable {
|
|||
}
|
||||
PreprocessorMacro macro= fMacroDictionary.get(name);
|
||||
if (macro == null) {
|
||||
if ((options & IGNORE_UNDEFINED_SIGNIFICANT_MACROS) == 0)
|
||||
if (reportSignificant && (options & IGNORE_UNDEFINED_SIGNIFICANT_MACROS) == 0)
|
||||
fCurrentContext.significantMacroUndefined(name);
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue