- File:
-
- 1 edited
-
src/ResolvExpr/CandidateFinder.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/ResolvExpr/CandidateFinder.cpp
recf3812 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.