mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-24 01:15:29 +02:00
Bug 543819 - NPE in EvalFunctionSet.isEquivalentTo()
Change-Id: I4f443f95c1a9bff7150abec323ab8afc576d5f00
This commit is contained in:
parent
e5466b8204
commit
9290546e2f
1 changed files with 3 additions and 0 deletions
|
@ -167,6 +167,9 @@ public class EvalFunctionSet extends CPPDependentEvaluation {
|
|||
return false;
|
||||
}
|
||||
EvalFunctionSet o = (EvalFunctionSet) other;
|
||||
if (fFunctionSet == null) {
|
||||
return o.fFunctionSet == null;
|
||||
}
|
||||
return fFunctionSet.equals(o.fFunctionSet);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue