aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/Parse/ParseTemplate.cpp
AgeCommit message (Expand)AuthorFilesLines
2022-06-28[Clang] Fix: Restore warning inadvertently removed by D126061.Martin Boehme1-1/+1
2022-06-15[clang] Reject non-declaration C++11 attributes on declarationsMartin Boehme1-5/+6
2022-05-13[OpenMP] Fix declare simd use on in-class member template functionMike Rice1-3/+6
2022-04-06[Clang][Sema] Prohibit statement expression in the default argumentJun Zhang1-11/+17
2022-03-24[clang][parse] Move source range into ParsedAttibutesViewTimm Bäder1-1/+1
2022-02-19Fix Wdocumentation unknown parameter warningSimon Pilgrim1-2/+0
2022-01-09[clang] Fix bugprone argument comments (NFC)Kazu Hirata1-4/+4
2022-01-09[clang] Use true/false instead of 1/0 (NFC)Kazu Hirata1-1/+1
2022-01-03[CodeCompletion] Signature help for template argument listsSam McCall1-12/+28
2021-09-28Update the message for template-template param keyword for C++17Erich Keane1-3/+6
2021-08-10[clang] Implement P0692R1 from C++20 (access checking on specializations and ...Alex Orlov1-0/+20
2020-12-03PR45699: Fix crash if an unexpanded parameter pack appears in aRichard Smith1-3/+2
2020-11-10[NFC, Refactor] Rename the (scoped) enum DeclaratorContext's enumerators to r...Faisal Vali1-8/+8
2020-06-23DR458: Search template parameter scopes in the right order.Richard Smith1-55/+40
2020-06-16Revert "DR458: Search template parameter scopes in the right order."Richard Smith1-16/+23
2020-06-16DR458: Search template parameter scopes in the right order.Richard Smith1-23/+16
2020-04-21C++2a -> C++20 in some identifiers; NFC.Aaron Ballman1-1/+1
2020-04-05PR45239: Don't deallocate TemplateIdAnnotations if they might still beRichard Smith1-0/+3
2020-03-30Fix crash if base specifier parsing hits an invalid type annotation.Richard Smith1-2/+2
2020-03-27Form invalid template-id annotations when parsing a construct that isRichard Smith1-7/+6
2020-03-27Improve error recovery from missing '>' in template argument list.Richard Smith1-9/+12
2020-03-27Improve recovery from invalid template-ids.Richard Smith1-46/+33
2020-03-19[Parser] Avoid spurious 'missing template' error in presence of typos.Haojian Wu1-21/+25
2020-03-17[Concepts] Fix incorrect control flow when TryAnnotateTypeConstraint annotate...Saar Raz1-1/+2
2020-02-18[NFC] Remove trailing spaceJim Lin1-1/+1
2020-01-28Make llvm::StringRef to std::string conversions explicit.Benjamin Kramer1-3/+3
2020-01-24[Concepts] Deprecate -fconcepts-ts, enable Concepts under -std=c++2aSaar Raz1-4/+3
2020-01-23[Concepts] Placeholder constraints and abbreviated templatesSaar Raz1-2/+3
2020-01-23Revert "[Concepts] Placeholder constraints and abbreviated templates"Sam McCall1-3/+2
2020-01-22[Concepts] Placeholder constraints and abbreviated templatesSaar Raz1-2/+3
2020-01-22[Concepts] Fix incorrect recovery in TryAnnotateTypeConstraintSaar Raz1-1/+4
2020-01-21Revert "[Concepts] Placeholder constraints and abbreviated templates"Jonas Devlieghere1-3/+2
2020-01-22[Concepts] Placeholder constraints and abbreviated templatesSaar Raz1-2/+3
2020-01-17Remove redundant CXXScopeSpec from TemplateIdAnnotation.Richard Smith1-90/+104
2020-01-15[Concepts] Type ConstraintsSaar Raz1-38/+193
2020-01-09[Concepts] Function trailing requires clausesSaar Raz1-2/+8
2019-10-01[clang] Make handling of unnamed template params similar to function paramsKadir Cetinkaya1-4/+4
2019-07-16Fix parameter name comments using clang-tidy. NFC.Rui Ueyama1-1/+1
2019-07-10[Concepts] Concept definitions (D40381)Saar Raz1-0/+94
2019-05-17[Lex] Allow to consume tokens while preprocessingIlya Biryukov1-2/+2
2019-05-09[c++20] Implement P0846R0: allow (ADL-only) calls to template-ids whoseRichard Smith1-33/+9
2019-03-30Adds `-ftime-trace` option to clang that produces Chrome `chrome://tracing` c...Anton Afanasyev1-0/+7
2019-01-19Update the file headers across all of the LLVM projects in the monorepoChandler Carruth1-4/+3
2018-11-27[MS] Push outermost class DeclContexts only in -fdelayed-template-parsingReid Kleckner1-12/+23
2018-11-27Revert r347627 "[MS] Push fewer DeclContexts for delayed template parsing"Reid Kleckner1-7/+2
2018-11-27[MS] Push fewer DeclContexts for delayed template parsingReid Kleckner1-2/+7
2018-09-21[CUDA] Fixed parsing of optional template-argument-list.Artem Belevich1-1/+3
2018-08-17Improve diagnostic for missing comma in template parameter list.Richard Smith1-15/+23
2018-07-30Remove trailing spaceFangrui Song1-37/+37
2018-07-12AttributeList de-listifying:Erich Keane1-36/+22