mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-01 06:05:24 +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();
|
||||
StringBuffer sb = new StringBuffer();
|
||||
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 );
|
||||
|
||||
// check to see if the option has an applicability calculator
|
||||
|
|
Loading…
Add table
Reference in a new issue