summaryrefslogtreecommitdiff
path: root/lib/Parse/ParseTemplate.cpp
Commit message (Expand)AuthorAge
* Fix PR20081: Parsing templates in the presence of -x cuda -std=c++11Eli Bendersky2014-06-20
* [C++1z] Implement N4051: 'typename' is permitted instead of 'class' when decl...Richard Smith2014-06-16
* Remove an unused variableTimur Iskhodzhanov2014-06-06
* PR11306 - Variadic template fix-it suggestion. Recover from misplaced or redu...Nikola Smiljanic2014-06-06
* Refactoring. Remove release and take methods from ActionResult. Rename takeAs...Nikola Smiljanic2014-05-29
* [C++11] Use 'nullptr'. Parser edition.Craig Topper2014-05-21
* Replace a fake enum class with the real thing.Richard Smith2014-05-16
* Handle -fdelayed-template-parsing of out-of-line definitions ofHans Wennborg2014-05-02
* Improve error recovery around colon.Serge Pavlov2014-04-13
* Introduce and use Decl::getAsFunction() to simplify templated function checksAlp Toker2014-01-22
* Parse: Token consumption modernization and loop de-nestingAlp Toker2014-01-05
* ExpectAndConsume: Diagnose errors automaticallyAlp Toker2014-01-01
* Support and use token kinds as diagnostic argumentsAlp Toker2013-12-24
* Refactor and micro-optimize ConsumeToken()Alp Toker2013-12-17
* Fix PR17637: incorrect calculation of template parameter depthFaisal Vali2013-12-04
* Replaced bool parameters in SkipUntil function with single bit-based parameter.Alexey Bataev2013-11-18
* Parse: Do not 'HandleTopLevelDecl' on templated functions.David Majnemer2013-08-16
* Avoid spurious error messages if parent template class cannot be instantiatedSerge Pavlov2013-08-10
* PR9992: Serialize and deserialize the token sequence for a function template inRichard Smith2013-08-07
* Started implementing variable templates. Top level declarations should be ful...Larisse Voufo2013-08-06
* Use SmallVectorImpl::reverse_iterator instead of SmallVector to avoid specify...Craig Topper2013-07-08
* Instantiation bug fix extension (cf. r184503) -- minor code fixes, including ...Larisse Voufo2013-06-22
* Bug Fix: Template explicit instantiations should not have definitions (FixIts...Larisse Voufo2013-06-21
* Fix the parser's updating of the template depth when parsing local templates ...Faisal Vali2013-06-08
* Revert r183618. Faisal Vali2013-06-08
* Fix the parser's updating of the template depth when parsing local templates ...Faisal Vali2013-06-08
* <rdar://problem/13806270> A template argument list is a constant-evaluated co...Douglas Gregor2013-05-03
* Keep the parser's template depth up to date when parsing local templates andRichard Smith2013-04-29
* Properly reenter multiple contexts when parsing a late-parsed function templateRichard Smith2013-04-29
* [Parser] Don't code-complete twice.Argyrios Kyrtzidis2013-03-27
* Add missing diagnostic for a nested-name-specifier on a free-standing type de...Richard Smith2013-03-18
* Per the grammar in [dcl.dcl]p1, a simple-declaration can only have attributesRichard Smith2013-02-22
* PR14918: Don't confuse braced-init-lists after template variable declarationsRichard Smith2013-01-15
* s/CXX0X/CXX11/g, except for __GNU_EXPERIMENTAL_CXX0X__, and update a few near...Richard Smith2013-01-02
* s/CPlusPlus0x/CPlusPlus11/gRichard Smith2013-01-02
* Don't require a space between the two ">" in "vector<id<protocol>>" in objc++11.Nico Weber2012-12-14
* fix spelloNico Weber2012-12-14
* Sort all of Clang's files under 'lib', and fix up the broken headersChandler Carruth2012-12-04
* ParseTemplate.cpp: Prune obsolete descriptions in ParseSingleDeclarationAfter...NAKAMURA Takumi2012-11-14
* ParseTemplate.cpp: Doxygen fix in AnnotateTemplateIdToken(). [-Wdocumentation]NAKAMURA Takumi2012-11-14
* Thread safety analysis: Fixed ICE caused by double delete when late parsedDeLesley Hutchins2012-11-02
* Now that ASTMultiPtr is nothing more than a array reference, make it a Mutabl...Benjamin Kramer2012-08-23
* Rip out remnants of move semantic emulation and smart pointers in Sema.Benjamin Kramer2012-08-23
* Clean up a large number of C++11 attribute parse issues, including parsingSean Hunt2012-06-23
* Extend the error recovery for a template-argument-list terminated by '>>' toRichard Smith2012-06-18
* Refactor DelayedDiagnostics so that it keeps diagnostics inJohn McCall2012-05-07
* switch some uses of ExpectAndConsume(tok::semi to use ExpectAndConsumeSemi. ...Chris Lattner2012-04-28
* Add a missing ExpressionEvaluationContext for template default arguments. Fi...Eli Friedman2012-04-26
* Parser: Don't manage TemplateAnnotationIds in a delayed cleanup pool.Benjamin Kramer2012-04-14
* Fix bugs found by -Wconstant-conversion improvements currently under review.David Blaikie2012-04-09