| Commit message (Expand) | Author | Age | Files | Lines |
* | Ugly ugly hack for libstdc++-4.6 and libstdc++-4.7 compatibility. These | Richard Smith | 2012-10-23 | 1 | -0/+16 |
* | Fixed instantiated operators source range. | Abramo Bagnara | 2012-10-04 | 1 | -1/+1 |
* | Don't produce diagnostics for missing ctor-initializers during template | Richard Smith | 2012-09-25 | 1 | -1/+1 |
* | Per C++11 [class.friend]p3, the 'friend' keyword must appear first in a | Richard Smith | 2012-09-20 | 1 | -1/+1 |
* | Actually rebuild function types properly when adjusting the function | Douglas Gregor | 2012-09-13 | 1 | -4/+13 |
* | When we substitute into the type of a function based on the | Douglas Gregor | 2012-09-13 | 1 | -2/+17 |
* | PR13811: Add a FunctionParmPackExpr node to handle references to function | Richard Smith | 2012-09-12 | 1 | -1/+2 |
* | PR9023: A template template parameter whose template parameter list contains an | Richard Smith | 2012-09-07 | 1 | -7/+101 |
* | Do not add using directives to a function decl context when instantiating. | Abramo Bagnara | 2012-09-05 | 1 | -1/+6 |
* | Remove ASTOwningVector, it doesn't own anything and provides no value over Sm... | Benjamin Kramer | 2012-08-23 | 1 | -1/+1 |
* | Rip out remnants of move semantic emulation and smart pointers in Sema. | Benjamin Kramer | 2012-08-23 | 1 | -1/+1 |
* | Check access to friend declarations. There's a number of different | John McCall | 2012-08-10 | 1 | -14/+34 |
* | Final piece of core issue 1330: delay computing the exception specification of | Richard Smith | 2012-07-27 | 1 | -2/+13 |
* | PR12917: Remove incorrect assumption that lambda mangling information cannot | Richard Smith | 2012-07-22 | 1 | -2/+2 |
* | PR13386: When matching up parameters between a function template declaration | Richard Smith | 2012-07-18 | 1 | -24/+22 |
* | Fix rejects-valid: explicit specialization of redeclared deleted function tem... | David Blaikie | 2012-07-16 | 1 | -1/+1 |
* | Stop instantiating a class if we hit a static_assert failure. Also, if the | Richard Smith | 2012-07-11 | 1 | -5/+4 |
* | PR9793: Treat substitution as an instantiation step for the purpose of the | Richard Smith | 2012-07-08 | 1 | -1/+0 |
* | Make explicit specializations at class scope work | Nico Weber | 2012-06-25 | 1 | -2/+11 |
* | Reapplying the changes from r158717 as they were rolled back to avoid merge c... | Aaron Ballman | 2012-06-19 | 1 | -2/+4 |
* | Revert r158700 and dependent patches r158716, r158717, and r158731. | Jakob Stoklund Olesen | 2012-06-19 | 1 | -4/+2 |
* | Improves parsing and semantic analysis for MS __declspec attributes. This in... | Aaron Ballman | 2012-06-19 | 1 | -2/+4 |
* | Documentation cleanup: fixing a typo from my previous 'fix'. | James Dennett | 2012-06-17 | 1 | -1/+1 |
* | Documentation cleanup: | James Dennett | 2012-06-15 | 1 | -2/+2 |
* | Still more Doxygen documentation fixes: | James Dennett | 2012-06-14 | 1 | -2/+2 |
* | PR13064: Store whether an in-class initializer uses direct or copy | Richard Smith | 2012-06-10 | 1 | -1/+1 |
* | Revert Decl's iterators back to pointer value_type rather than reference valu... | David Blaikie | 2012-06-06 | 1 | -2/+2 |
* | Correct the starting location for instantiations of field declarations which | Richard Smith | 2012-05-23 | 1 | -1/+1 |
* | Fix our handling of visibility in explicit template instantiations. | Rafael Espindola | 2012-05-15 | 1 | -1/+2 |
* | Move Sema::VerifyIntegerConstantExpression() and | Douglas Gregor | 2012-05-04 | 1 | -3/+4 |
* | Remove the ref/value inconsistency in filter_decl_iterator. | David Blaikie | 2012-04-30 | 1 | -2/+2 |
* | PR 12586: Fix assert while running libc++ testsuite: deal with exception | Richard Smith | 2012-04-19 | 1 | -17/+14 |
* | PR12569: Instantiate exception specifications of explicit instantiations | Richard Smith | 2012-04-17 | 1 | -1/+10 |
* | Implement DR1330 in C++11 mode, to support libstdc++4.7 which uses it. | Richard Smith | 2012-04-17 | 1 | -151/+211 |
* | Implement C++11 [expr.prim.general]p3, which permits the use of 'this' | Douglas Gregor | 2012-04-16 | 1 | -1/+26 |
* | If something already instantiated is reinstantiated as an explicit definition, | Nick Lewycky | 2012-04-04 | 1 | -1/+6 |
* | Basic semantic analysis support for inheriting constructor declarations in | Richard Smith | 2012-04-02 | 1 | -0/+6 |
* | When we form a new function/class template specialization, we first | Douglas Gregor | 2012-03-28 | 1 | -5/+5 |
* | Add a special-case diagnostic for one of the more obnoxious special cases of | Richard Smith | 2012-03-26 | 1 | -0/+14 |
* | Handle instantiations of redeclarations of forward-declared enumerations within | Richard Smith | 2012-03-26 | 1 | -3/+15 |
* | Delay checking of dependent underlying types for redeclarations of member | Richard Smith | 2012-03-26 | 1 | -5/+16 |
* | Support for definitions of member enumerations of class templates outside the | Richard Smith | 2012-03-23 | 1 | -1/+4 |
* | Instantiating a class template should not instantiate the definition of any | Richard Smith | 2012-03-14 | 1 | -20/+34 |
* | PR11850 + duplicates: don't assume that a function parameter pack expansion is | Richard Smith | 2012-03-13 | 1 | -11/+14 |
* | Fix PR10447: lazily building name lookup tables for DeclContexts was broken. | Richard Smith | 2012-03-13 | 1 | -2/+2 |
* | Unify naming of LangOptions variable/get function across the Clang stack (Lex... | David Blaikie | 2012-03-11 | 1 | -7/+7 |
* | Replace MarkVarRequired with a more generic | Rafael Espindola | 2012-03-08 | 1 | -4/+3 |
* | Fix a small difference in sema and codegen views of what needs to be output. | Rafael Espindola | 2012-03-05 | 1 | -4/+8 |
* | Lambda closure types are always considered to be like "local" classes, | Douglas Gregor | 2012-02-16 | 1 | -3/+6 |
* | Minor fix to template instantiation, which properly instantiates | DeLesley Hutchins | 2012-02-16 | 1 | -1/+1 |