summaryrefslogtreecommitdiff
path: root/test/SemaTemplate/deduction.cpp
AgeCommit message (Expand)Author
2017-06-06PR33318: Add missing full-expression checking to static_assert expression.Richard Smith
2017-04-13PR32185: Revert r291512 and add a testcase for PR32185.Richard Smith
2017-02-21Fix deduction of type of pack-expanded non-type template parameter.Richard Smith
2017-02-21When deducing an array bound from the length of an initializer list, don'tRichard Smith
2017-02-21PR32010: Fix template argument depth mixup when forming implicit constructorRichard Smith
2017-02-16Revert r295277 to fix buildbot.Richard Smith
2017-02-16Add missing "deduced A == A" check for function template partial ordering.Richard Smith
2017-01-10Don't try to check implicit conversion sequences for an object argument ifRichard Smith
2017-01-10Fix conversion index / argument index mismatch when diagnosing overload resol...Richard Smith
2017-01-09Implement C++ DR1391 (wg21.link/cwg1391)Richard Smith
2017-01-09Implement DR1388 (wg21.link/cwg1388).Richard Smith
2017-01-08PR31514: Add recursive self-instantiation check during template argumentRichard Smith
2017-01-05If an explicitly-specified pack might have been extended by template argumentRichard Smith
2017-01-05Per [temp.deduct.call], do not deduce an array bound of 0 from an empty initi...Richard Smith
2017-01-05Fix assertion failure on deduction failure due to too short template argument...Richard Smith
2017-01-04Remove accidentally-added lines in r290923 test, and add another testcase.Richard Smith
2017-01-04Fix template argument deduction when only some of a parameter pack is a non-d...Richard Smith
2017-01-02Add testcase for the regression introduced in r290808.Richard Smith
2016-12-24Fix crash if substitution fails during deduction of variable template partial...Richard Smith
2016-12-24When producing a name of a partial specialization in a diagnostic, use theRichard Smith
2016-12-23When merging two deduced non-type template arguments for the same parameter,Richard Smith
2016-09-28Fix bug where template argument deduction of a non-type template parameter usedRichard Smith
2016-05-19Fix PR27601 by reverting [r267453] - Refactor traversal of bases in deduction...Faisal Vali
2015-12-30Implement [temp.deduct.type]p6: if the nested-name-specifier of a type isRichard Smith
2015-08-15[Sema] Be consistent about diagnostic wording: always use "cannot".Davide Italiano
2015-01-16restore fix for 18645, buildbot apparently gave a false positive.Nathan Sidwell
2015-01-12reverting due to build bot failureNathan Sidwell
2015-01-10fix pr18645. Correct logic concerning 'T &&' deduction against lvalues.Nathan Sidwell
2014-11-12Another test for PR19372, showing why we need to keep checking arguments afte...Richard Smith
2014-11-12Add another testcase.Richard Smith
2014-11-12PR19372: Keep checking template arguments after we see an argument packRichard Smith
2014-11-12PR21536: Fix a corner case where we'd get confused by a pack expanding into theRichard Smith
2014-08-21Fix grammatical error in diagnostic.Richard Smith
2011-07-15Restore the C-style cast hack for enum template arguments,John McCall
2011-02-17When printing a qualified type, look through a substituted templateDouglas Gregor
2010-10-12Enter the context of the declared function template when performingJohn McCall
2010-08-28When perform exact-qualifier-match template argument deduction,John McCall
2010-08-19When deducing the element type of an array, ignore qualifiers ifJohn McCall
2010-08-05TDK_InconsistentQuals is really totally different from TDK_Inconsistent.John McCall
2010-07-14Wire up '-Wignored-qualifiers' to the warning on 'const' in 'const int f()'.Chandler Carruth
2010-07-13When forming a function call or message send expression, be sure toDouglas Gregor
2010-02-07Require a complete type before examining base classes during template argumentChandler Carruth
2009-12-30More fixes to the handling of CVR-comparisons on array types. Adds a method toChandler Carruth
2009-12-15Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'.Daniel Dunbar
2009-11-11Template argument deduction for template template parameters. ThisDouglas Gregor