Changeset e3282fe
- Timestamp:
- Nov 26, 2020, 7:31:23 PM (4 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 4432b52
- Parents:
- 88a0ff6
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/ResolvExpr/CandidateFinder.cpp
r88a0ff6 re3282fe 1685 1685 // is unique. 1686 1686 CandidateList satisfied; 1687 satisfyAssertions(candidate, localSyms, satisfied, errors); 1687 bool needRecomputeKey = false; 1688 if (candidate->need.empty()) { 1689 satisfied.emplace_back(candidate); 1690 } 1691 else { 1692 satisfyAssertions(candidate, localSyms, satisfied, errors); 1693 needRecomputeKey = true; 1694 } 1688 1695 1689 1696 for (auto & newCand : satisfied) { 1690 1697 // recomputes type key, if satisfyAssertions changed it 1698 if (needRecomputeKey) 1691 1699 { 1692 1700 ast::ptr< ast::Type > newType = newCand->expr->result;
Note: See TracChangeset
for help on using the changeset viewer.