mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-12 18:55:38 +02:00
Bug # 219684 : ApplicabilityCalculator can't set bool val in CDT4
This commit is contained in:
parent
53381a1c53
commit
d7f3e235cc
1 changed files with 3 additions and 1 deletions
|
@ -2569,7 +2569,9 @@ public class Tool extends HoldsOptions implements ITool, IOptionCategory, IMatch
|
||||||
ArrayList flags = new ArrayList();
|
ArrayList flags = new ArrayList();
|
||||||
StringBuffer sb = new StringBuffer();
|
StringBuffer sb = new StringBuffer();
|
||||||
for (int index = 0; index < opts.length; index++) {
|
for (int index = 0; index < opts.length; index++) {
|
||||||
IOption option = opts[index];
|
IOption option = getOptionToSet(opts[index], false);
|
||||||
|
if (option == null)
|
||||||
|
continue;
|
||||||
sb.setLength( 0 );
|
sb.setLength( 0 );
|
||||||
|
|
||||||
// check to see if the option has an applicability calculator
|
// check to see if the option has an applicability calculator
|
||||||
|
|
Loading…
Add table
Reference in a new issue