Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/ResolvExpr/CandidateFinder.cpp

    r16ba4897 rb6f2e7ab  
    11151115                // Implement SFINAE; resolution errors are only errors if there aren't any non-error
    11161116                // candidates
    1117                 if ( found.empty() ) errors.throwIfNonEmpty();
     1117                if ( found.empty() && ! errors.isEmpty() ) { throw errors; }
    11181118
    11191119                // only keep the best matching intrinsic result to match C semantics (no unexpected narrowing/widening)
Note: See TracChangeset for help on using the changeset viewer.