| 620 | } |
| 621 | |
| 622 | static bool isNestedInLambda(const Scope* inner, const Scope* outer) |
| 623 | { |
| 624 | while (inner && inner != outer) { |
| 625 | if (inner->type == ScopeType::eLambda) |
| 626 | return true; |
| 627 | inner = inner->nestedIn; |
| 628 | } |
| 629 | return false; |
| 630 | } |
| 631 | |
| 632 | void CheckConditionImpl::multiCondition2() |
| 633 | { |