Age | Commit message (Expand) | Author |
2012-02-16 | C++11 allows unions to have static data members. Remove the corresponding | Richard Smith |
2012-02-16 | Implicitly define a lambda's conversion functions (to function | Douglas Gregor |
2012-02-16 | Mark the parenthesized array member initialization diagnostic as DefaultError, | Richard Smith |
2012-02-15 | Support GCC's bug^Wextension allowing class array members to be initalized by a | Richard Smith |
2012-02-15 | When overload resolution picks an implicitly-deleted special member | Douglas Gregor |
2012-02-15 | A little more lambda capture initialization diagnostics cleanup | 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 | Specialize the diagnostic complaining about conflicting types of | Douglas Gregor |
2012-02-14 | Implement C++ core issue 974, which permits default arguments for | Douglas Gregor |
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 | 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-13 | Add a subgroup of -Wreturn-type, -Wreturn-type-c-linkage. | Matt Beaumont-Gay |
2012-02-13 | Remove unused diagnostics from include/clang/Basic/Diagnostic*.td files. | Dmitri Gribenko |
2012-02-13 | Update constexpr implementation to match CWG's chosen approach for core issues | Richard Smith |
2012-02-12 | Proper initializer list support for new expressions and type construct expres... | Sebastian Redl |
2012-02-10 | Implement C++11 [expr.lambda.prim]p13, which prohibits lambdas in | Douglas Gregor |
2012-02-10 | Allow implicit capture of 'this' in a lambda even when the capture | Douglas Gregor |
2012-02-10 | PR11684, core issue 1417: | Richard Smith |
2012-02-09 | Don't allow deduction of a lambda result type from an initializer | Douglas Gregor |
2012-02-09 | Implement return type deduction for lambdas per C++11 | Douglas Gregor |
2012-02-09 | Remove the "unsupported" error for lambda expressions. It's annoying, | Douglas Gregor |
2012-02-09 | Implement C++ [expr.prim.lambda]p2, which bans lambda expressions in | Douglas Gregor |
2012-02-09 | CWG issue 1405: mutable members are allowed in literal types, but can't undergo | Richard Smith |
2012-02-09 | Adding support for warning when a non-C compatible user-defined type is retur... | Aaron Ballman |
2012-02-08 | Move -Wcovered-switch-default out of -Wswitch (and -Wall), and make it an opt... | Ted Kremenek |
2012-02-08 | Revise the SplitQualType interface to make it its own thing instead of | John McCall |
2012-02-07 | Misc improvements to the diagnostic when a variable is odr-used in a context ... | Eli Friedman |
2012-02-04 | In C++11 mode, when an integral constant expression is desired and we have a | Richard Smith |
2012-02-04 | Don't allow a value of a scoped enumeration to be used as the first bound for an | Richard Smith |
2012-02-04 | Disallow constexpr main. | Richard Smith |
2012-02-04 | Fix a rejects-valid in C++11: array new of a negative size, or overflowing array | Richard Smith |
2012-02-03 | Implement implicit capture for lambda expressions. | Eli Friedman |
2012-02-03 | Don't warn about anonymous struct/union in C11. | Hans Wennborg |
2012-02-03 | Thread safety analysis: | Richard Smith |
2012-02-03 | objc: Issue diagnostic when receiver type is a forward class declaration and | Fariborz Jahanian |
2012-02-01 | Reject mismatched "#pragma GCC visibility push" and "#pragma GCC visibility p... | Rafael Espindola |
2012-02-01 | Look for declaration of CFBridgingRetain/CFBridgingRetain before | Fariborz Jahanian |
2012-02-01 | Add a new compiler warning, which flags anti-patterns used as the size | Anna Zaks |
2012-02-01 | Introduce the lambda scope before determining explicit captures, which | Douglas Gregor |
2012-02-01 | Diagnose attempts to explicitly capture a __block variable in a lambda. | Douglas Gregor |
2012-01-31 | objc-arc: In various diagnostics mention | Fariborz Jahanian |
2012-01-29 | Complain about attempts to use 'protected' visibility on targets | John McCall |
2012-01-27 | Remove the "C" in "implicitly declaring C library function" diagnostic | Jean-Daniel Dupas |
2012-01-27 | constexpr: Implement the [dcl.constexpr]p5 check for whether a constexpr | Richard Smith |
2012-01-24 | Add a new warning, -Wover-aligned, which detects attempts to use the default | Nick Lewycky |
2012-01-24 | objc: Issue a generic diagnostic assigning to | Fariborz Jahanian |
2012-01-24 | Promote the extension warning for attempts to catch a reference or | Douglas Gregor |