aboutsummaryrefslogtreecommitdiff
path: root/clang/test/CXX
AgeCommit message (Expand)AuthorFilesLines
2024-07-05[clang] Implement P3144R2 "Deleting a Pointer to an Incomplete Type..." (#97733)Vlad Serebrennikov1-9/+13
2024-07-03[Clang][Sema] Correctly transform dependent operands of overloaded binary ope...Krystian Stasiowski1-0/+16
2024-07-03[Clang][Sema] Treat explicit specializations of static data member templates ...Krystian Stasiowski1-0/+12
2024-07-02[Clang] Clarify diagnostic notes for implicitly generated deduction guides (#...Younan Zhang4-8/+14
2024-06-27Clang: Add warning flag for storage class specifiers on explicit specializati...David Blaikie1-4/+12
2024-06-22[Clang] fix access checking inside return-type-requirement of compound requir...Zhikai Zeng1-0/+36
2024-06-21[clang][Interp] Don't try to decay non-pointers to pointersTimm Bäder1-1/+1
2024-06-21[clang] Add test for CWG2811 "Clarify "use" of main" (#96168)Vlad Serebrennikov2-2/+26
2024-06-21[clang] Implement CWG2877 "Type-only lookup for using-enum-declarator" (#95399)Vlad Serebrennikov2-10/+5
2024-06-21[clang] Cover CWG issues about `export template` (#94876)Vlad Serebrennikov3-13/+18
2024-06-20[Clang] [Sema] Diagnose unknown std::initializer_list layout in SemaInit (#95...Mital Ashok2-4/+2
2024-06-18[Clang][Sema] Diagnose variable template explicit specializations with storag...Krystian Stasiowski7-51/+330
2024-06-17[Clang] Introduce `CXXTypeidExpr::hasNullCheck` (#95718)Mital Ashok1-0/+13
2024-06-17[NFC] Refactor `[[nodiscard]]` test to not use macros and run under `-pedanti...Mital Ashok1-35/+27
2024-06-13Revert "[clang][NFC] Add a test for CWG2685" (#95389)Younan Zhang1-9/+0
2024-06-13[clang][NFC] Add a test for CWG2685 (#95206)Younan Zhang1-0/+9
2024-06-10[Clang][C++23] update constexpr diagnostics for missing return statements per...Oleksandr T1-1/+1
2024-06-07[clang] Add fixit for using declaration with a (qualified) namespace (#94762)Nico Weber2-0/+5
2024-06-07Fixed grammatical error in "enum specifier" error msg #94443 (#94592)kper6-11/+11
2024-06-06Revert "Reapply "[Clang][CWG1815] Support lifetime extension of temporary cre...bgra83-48/+7
2024-06-05[Clang] Static and explicit object member functions with the same parameter-t...cor3ntin3-5/+49
2024-06-04[clang] Add tests for Core issues about friend templates (#94288)Vlad Serebrennikov2-0/+131
2024-06-04[clang] Move CWG2390 test into `cwg23xx.cpp` (#94206)Vlad Serebrennikov2-48/+36
2024-06-03[clang] Make sure all C++ DR tests are running with `-pedantic-errors` (#94203)Vlad Serebrennikov4-28/+28
2024-06-03[clang] Add tests for some CWG issues from 2024-05-31 telecon (#94167)Vlad Serebrennikov1-7/+88
2024-05-31[clang] require template arg list after template kw (#80801)Erick Velez1-1/+2
2024-05-30[clang] CWG150: add tests and change to unreleased (#93758)Matheus Izvekov1-0/+40
2024-05-29[clang] Preserve Qualifiers and type sugar in TemplateNames (#93433)Matheus Izvekov3-6/+6
2024-05-23Revert "[clang] Implement CWG2398 provisional TTP matching to class templates...Matheus Izvekov1-3/+2
2024-05-23Reapply "[Clang][CWG1815] Support lifetime extension of temporary created by ...yronglin3-7/+48
2024-05-22[clang] Implement CWG2398 provisional TTP matching to class templates (#92855)Matheus Izvekov1-2/+3
2024-05-22[Clang] Perform derived-to-base conversion on explicit object parameter in la...Sirraide1-0/+71
2024-05-22Fix a benign typo in a test; NFCAaron Ballman1-1/+1
2024-05-22Reland "[clang] Enable sized deallocation by default in C++14 onwards" (#90373)Pengcheng Wang3-10/+11
2024-05-20[Clang][Sema] Do not add implicit 'const' when matching constexpr function te...Krystian Stasiowski2-3/+80
2024-05-20[Clang][Sema] Diagnose current instantiation used as an incomplete base class...Krystian Stasiowski2-3/+123
2024-05-20[Clang][Sema] Don't build CXXDependentScopeMemberExprs for potentially implic...Krystian Stasiowski1-2/+89
2024-05-20[Clang][Sema] Fix crash when diagnosing near-match for 'constexpr' redeclarat...Krystian Stasiowski1-0/+11
2024-05-17[clang] Implement CWG2428 "Deprecating a concept" (#92295)Vlad Serebrennikov1-0/+42
2024-05-16[Clang][Sema] ASTContext::getUnconstrainedType propagates dependence (#92425)Krystian Stasiowski1-0/+13
2024-05-16Revert "[Clang][CWG1815] Support lifetime extension of temporary created by a...erichkeane3-51/+10
2024-05-15Reapply "[Clang][Sema] Earlier type checking for builtin unary operators (#90...Krystian Stasiowski6-47/+378
2024-05-15[Clang][Sema] Do not mark template parameters in the exception specification ...Krystian Stasiowski1-0/+72
2024-05-15[clang] Add tests for CWG issues regarding completeness of types (#92113)Vlad Serebrennikov12-13/+221
2024-05-14Revert "[Clang][Sema] Earlier type checking for builtin unary operators (#905...Krystian Stasiowski5-205/+47
2024-05-14[Clang][Sema] Earlier type checking for builtin unary operators (#90500)Krystian Stasiowski5-47/+205
2024-05-13[Clang][Sema] Fix bug where operator-> typo corrects in the current instantia...Krystian Stasiowski1-0/+27
2024-05-13[Clang][CWG1815] Support lifetime extension of temporary created by aggregate...yronglin3-7/+48
2024-05-11[clang] Add test for CWG1820 "Qualified typedef names" (#91765)Vlad Serebrennikov1-0/+47
2024-05-10[clang][NFC] Rename C++ CWG DR test files to use `cwg` prefixVlad Serebrennikov29-0/+0