Age | Commit message (Expand) | Author |
2012-02-17 | Only add 'const' to the type of variables captured in a lambda when | Douglas Gregor |
2012-02-17 | Rework the Sema/AST/IRgen dance for the lambda closure type's | Douglas Gregor |
2012-02-17 | Reject continue/break statements within members of local functions nested within | Richard Smith |
2012-02-16 | Avoid infinite mutual recursion in DiagnoseInvalidRedeclaration. | Kaelyn Uhrain |
2012-02-16 | Lambda closure types are always considered to be like "local" classes, | Douglas Gregor |
2012-02-16 | C++11 allows unions to have static data members. Remove the corresponding | Richard Smith |
2012-02-16 | If code completion patterns are not enabled, use simpler else/else if | Douglas Gregor |
2012-02-16 | Add fixits for ARC casting errors for implicit conversions as well. rdar://10... | Argyrios Kyrtzidis |
2012-02-16 | Minor fix to template instantiation, which properly instantiates | DeLesley Hutchins |
2012-02-16 | Thread safety analysis: Don't check for lockable on undefined types. | DeLesley Hutchins |
2012-02-16 | Proper checking of list-initializers for array new expressions. | Sebastian Redl |
2012-02-16 | Revert "Revert "Make CXXNewExpr contain only a single initialier, and not hol... | Sebastian Redl |
2012-02-16 | Revert "Make CXXNewExpr contain only a single initialier, and not hold the us... | Sebastian Redl |
2012-02-16 | Make CXXNewExpr contain only a single initialier, and not hold the used const... | Sebastian Redl |
2012-02-16 | Shift Microsoft enum extensions from -fms-extensions to -fms-compatibility, s... | Eli Friedman |
2012-02-16 | Implicitly define a lambda's conversion functions (to function | Douglas Gregor |
2012-02-15 | Silence a valgrind warning, and remove an unused var. | Kaelyn Uhrain |
2012-02-15 | Support GCC's bug^Wextension allowing class array members to be initalized by a | Richard Smith |
2012-02-15 | Improve typo correction involving nested name specifiers. | Kaelyn Uhrain |
2012-02-15 | Lambda closure types have a conversion function to a block pointer | Douglas Gregor |
2012-02-15 | Factor the construction of the lambda-to-function-pointer conversion function... | Douglas Gregor |
2012-02-15 | When overload resolution picks an implicitly-deleted special member | Douglas Gregor |
2012-02-15 | Introduce a new initialization entity for lambda captures, and | Douglas Gregor |
2012-02-15 | Specialize noreturn diagnostics for lambda expressions. | Douglas Gregor |
2012-02-15 | Fix silly precedence error. | Douglas Gregor |
2012-02-15 | Specialize the diagnostic complaining about conflicting types of | Douglas Gregor |
2012-02-15 | Implement code completion support for lambda capture lists. | Douglas Gregor |
2012-02-15 | Make -Wformat fix-its preserve original conversion specifiers. | Hans Wennborg |
2012-02-15 | If a static data member of a class template which could be used in a constant | Richard Smith |
2012-02-15 | Split reinterpret_casts of member pointers out from CK_BitCast; this | John McCall |
2012-02-14 | Implement C++ core issue 974, which permits default arguments for | Douglas Gregor |
2012-02-14 | If a constexpr function template specialization is referenced, and then the | Richard Smith |
2012-02-14 | Generalize -Wempty-body: warn when statement body is empty (closes: PR11329) | Dmitri Gribenko |
2012-02-14 | Check the return type of lambda expressions. | Douglas Gregor |
2012-02-14 | PR11650: Implement resolution of core issue 1301. Value initialization can't be | Richard Smith |
2012-02-14 | Warn about non-int main() results in GNU C mode instead of erroring. | John McCall |
2012-02-14 | Implement support for lambda capture pack expansions, e.g., | Douglas Gregor |
2012-02-14 | Use several weighted factors to determine typo candidate viablity. | Kaelyn Uhrain |
2012-02-14 | Use a simpler (and more efficient) pattern to pad vectors. | Benjamin Kramer |
2012-02-14 | Fix another issue introduced by the proposed wording for core issue 1358: since | Richard Smith |
2012-02-14 | Link together the call operator produced from transforming a lambda | Douglas Gregor |
2012-02-13 | Deal with a horrible C++11 special case. If a non-literal type has a constexpr | Richard Smith |
2012-02-13 | Introduce support for template instantiation of lambda | Douglas Gregor |
2012-02-13 | Don't route explicit construction via list-initialization through the functio... | Sebastian Redl |
2012-02-13 | Keep track of the set of array index variables we use when we | Douglas Gregor |
2012-02-13 | Move the storage of lambda captures and capture initializers from | Douglas Gregor |
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-12 | Within the body of a lambda expression, decltype((x)) for an | Douglas Gregor |
2012-02-12 | Proper initializer list support for new expressions and type construct expres... | Sebastian Redl |