Age | Commit message (Expand) | Author |
2013-05-06 | C++1y: support 'for', 'while', and 'do ... while' in constant expressions. | Richard Smith |
2013-05-05 | C++1y: support for increment and decrement in constant expression evaluation. | Richard Smith |
2013-05-05 | Factor out duplication between lvalue-to-rvalue conversions and variable | Richard Smith |
2013-05-04 | Implement most of N3638 (return type deduction for normal functions). | Richard Smith |
2013-05-04 | Don't build a call expression referring to a function which we're not allowed | Richard Smith |
2013-05-04 | Say 'decltype(auto)' not 'auto' as appropriate in mismatched-deduction diagno... | Richard Smith |
2013-05-04 | Separate out and special-case the diagnostic for 'auto' in a | Richard Smith |
2013-04-26 | Implement C++1y decltype(auto). | Richard Smith |
2013-04-25 | Don't mark 'extern "C" void f(void)' as having extern storage class. | Rafael Espindola |
2013-04-22 | C++1y constexpr extensions, round 1: Allow most forms of declaration and | Richard Smith |
2013-04-21 | The 'constexpr implies const' rule for non-static member functions is gone in | Richard Smith |
2013-04-08 | <rdar://problem/13584715> Converted constant expressions are expected to have... | Douglas Gregor |
2013-03-20 | Don't look outside the innermost enclosing namespace when | John McCall |
2013-02-22 | Don't crash if we try to apply 'alignas' to a variable declared with an | Richard Smith |
2013-02-22 | Implement C++11 [dcl.align]p6-p8, and C11 6.7.5/7. This had to be split out of | Richard Smith |
2013-02-01 | Implement [dcl.align]p5 and C11 6.7.5/4: alignas cannot underalign. | Richard Smith |
2013-01-30 | Unresolved lookups can have using declarations that refer to | Douglas Gregor |
2013-01-30 | [Sema] Constrain test added in r173873 with expected-error-re | David Blaikie |
2013-01-30 | Provide a fixit for constexpr non-static data members. | David Blaikie |
2013-01-28 | Finish semantic analysis for [[carries_dependency]] attribute. | Richard Smith |
2013-01-28 | Tests and a minor bugfix for [dcl.attr.depend]p1 (C++11 [[carries_dependency]] | Richard Smith |
2013-01-17 | Implement C++11 semantics for [[noreturn]] attribute. This required splitting | Richard Smith |
2013-01-14 | Fix regression in r172376. Don't try to detect missing 'constexpr' specifiers | Richard Smith |
2013-01-14 | PR12008: defer adding the implicit 'const' to a constexpr member function until | Richard Smith |
2012-12-09 | PR14550: If a system header contains a bogus constexpr function definition, | Richard Smith |
2012-11-28 | C++ core issue 1344, PR10618: promote "addition of default argument makes this | Richard Smith |
2012-11-06 | Teach Clang parser to reject C++11 attributes that appertain to declaration s... | Michael Han |
2012-10-19 | Prior to adding the new "expected-no-diagnostics" directive to VerifyDiagnost... | Andy Gibbs |
2012-10-16 | Implement GCC's -Wint-to-pointer-cast. | David Blaikie |
2012-10-10 | Fix a crash-on-invalid when parsing a reference to an invalid auto declaration | David Blaikie |
2012-10-04 | Egriegious hack to support libstdc++4.6's broken <atomic> header, which defines | Richard Smith |
2012-10-03 | Improve C++11 attribute parsing. | Michael Han |
2012-07-08 | PR13293: Defer deduction of an auto type with a dependent declarator, such as... | Richard Smith |
2012-06-12 | If parsing a trailing-return-type fails, don't pretend we didn't have one at | Richard Smith |
2012-06-10 | Fix PR13052 properly, by performing special member lookup to determine whether | Richard Smith |
2012-05-11 | When diagnosing inaccessible temporary destructors in decltype expressions, use | Richard Smith |
2012-05-09 | Push the knowledge that we are parsing a type-id/type-name further into the | Richard Smith |
2012-04-10 | Disambiguation of '[[': | Richard Smith |
2012-04-05 | Temporary workaround for bug#12457: turn the 'constexpr function never produces | Richard Smith |
2012-03-13 | Fix PR10447: lazily building name lookup tables for DeclContexts was broken. | Richard Smith |
2012-03-12 | Fix parsing of trailing-return-type. Types are syntactically prohibited from | Richard Smith |
2012-03-12 | Fix parsing of type-specifier-seq's. Types are syntactically allowed to be | Richard Smith |
2012-03-05 | static_assert: Allow any string-literal as the message, not just a character | Richard Smith |
2012-02-22 | Accept braced-init-lists in conditions, and, in passing, dramatically improve | Richard Smith |
2012-02-22 | Implement C++11 [expr.call]p11: If the operand to a decltype-specifier is a | Richard Smith |
2012-02-20 | Fix a constexpr FIXME: When implicitly instantiating the primary template for an | Richard Smith |
2012-02-16 | constexpr tidyups: | Richard Smith |
2012-02-13 | Update constexpr implementation to match CWG's chosen approach for core issues | Richard Smith |
2012-02-12 | Implement the standard decltype() semantics described in C++11 | Douglas Gregor |
2012-02-10 | PR11684, core issue 1417: | Richard Smith |