- Timestamp:
- Jan 4, 2025, 12:22:39 AM (2 weeks ago)
- Branches:
- master
- Children:
- 8893ad4
- Parents:
- 2a32118
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/ResolvExpr/CandidateFinder.cpp
r2a32118 r6b95feb 1225 1225 1226 1226 // return casts are eliminated (merely selecting an overload, no actual operation) 1227 candidates = std::move(finder.candidates); 1227 for (auto & cand : finder.candidates) { 1228 if (typesCompatibleIgnoreQualifiers(toType, cand->expr->result, cand->env)) { 1229 candidates.push_back (cand); 1230 } 1231 } 1232 // candidates = std::move(finder.candidates); 1228 1233 return; 1229 1234 }
Note: See TracChangeset
for help on using the changeset viewer.