Fix previous commit
Revert changes inadvertently included, and fix `=` to `==`.
This commit is contained in:
parent
029ddab8b5
commit
b2c58115d7
20 changed files with 38 additions and 39 deletions
|
|
@ -1007,7 +1007,7 @@ public:
|
|||
b = First(baselist);
|
||||
while (b.item) {
|
||||
String *bname = Getattr(b.item, "name");
|
||||
if (!bname || GetFlag(b.item, "feature:ignore") || !Getattr(b.item, "module")) {
|
||||
if ((!bname) || GetFlag(b.item, "feature:ignore") || (!Getattr(b.item, "module"))) {
|
||||
b = Next(b);
|
||||
continue;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue