Age | Commit message (Expand) | Author |
2012-10-18 | DR1442: In a range-based for statement, namespace 'std' is not an associated | Richard Smith |
2012-10-09 | Clearing a SmallPtrSet is still expensive, split it out from OverloadCandidat... | Benjamin Kramer |
2012-10-08 | StringRef-ify Binary/UnaryOperator::getOpcodeStr | David Blaikie |
2012-10-02 | Add FP_CONTRACT support for clang. | Lang Hames |
2012-09-25 | Fix crash when a decltype expression in a trailing return type refers to the | Richard Smith |
2012-09-19 | Remove Context argument from TemplateDeductionInfo constructor. It was no lon... | Craig Topper |
2012-09-18 | Fix a small bug in the way we handle builtin candidates for | Eli Friedman |
2012-09-13 | Revert r163829. The world (or libstdc++, at least) is not ready. | Richard Smith |
2012-09-13 | Implement C++11 [conv.prom]p4: an enumeration with a fixed underlying type has | Richard Smith |
2012-09-13 | Don't perform template argument deduction against invalid templates; | Douglas Gregor |
2012-09-13 | Remove speculative fix for C++ core issue 1407, since it was resolved as NAD. | Richard Smith |
2012-08-24 | Instantiate class template specializations during ADL. | John McCall |
2012-08-24 | Push ArrayRef through the Expr hierarchy. | Benjamin Kramer |
2012-08-23 | Rip out remnants of move semantic emulation and smart pointers in Sema. | Benjamin Kramer |
2012-08-21 | Better diagnostics for range-based for loops with bad range types. | Sam Panzer |
2012-08-16 | Test commit: deleted whitespace on blank line | Sam Panzer |
2012-08-08 | Implement warning for integral null pointer constants other than the literal 0. | David Blaikie |
2012-07-31 | Fix some minor typos | Sylvestre Ledru |
2012-07-23 | Fix a typo (the the => the) | Sylvestre Ledru |
2012-07-20 | No longer assuming the number of prototype arguments is always less than the ... | Aaron Ballman |
2012-07-18 | Fix OverloadCandidateSet::clear to not leak PartialDiagnostics, found by Samuel | Richard Smith |
2012-06-25 | Unrevert r158887, reverted in r158949, along with a fix for the bug which | Richard Smith |
2012-06-22 | Documentation cleanup: making \param and \returns docs match the code. | James Dennett |
2012-06-22 | Diagnostics cleanup: Fixing \params to match the code. | James Dennett |
2012-06-22 | Documentation cleanup: | James Dennett |
2012-06-21 | Revert r158887. This fixes pr13168. | Rafael Espindola |
2012-06-21 | If an object (such as a std::string) with an appropriate c_str() member function | Richard Smith |
2012-06-19 | Fix -Wc++11-narrowing warnings for narrowing negative values to larger unsigned | Richard Smith |
2012-06-19 | Remove some debugging code that snuck into r158691. | Kaelyn Uhrain |
2012-06-19 | Improve the error message when a function overload candidate is rejected | Kaelyn Uhrain |
2012-06-15 | Documentation cleanup: | James Dennett |
2012-06-13 | Add missing narrowing check: converting from a signed integral type to a wider | Richard Smith |
2012-06-10 | PR12964: __int128 and unsigned __int128 are promoted integral types, be sure to | Richard Smith |
2012-06-04 | When adding built-in operator candidates for overload resolution | Douglas Gregor |
2012-05-24 | DR1152 / PR12931 / PR6177: A candidate function which requires binding a const | Richard Smith |
2012-05-11 | PR11857: When the wrong number of arguments are provided for a function | Richard Smith |
2012-05-09 | A little tweak to the SFINAE condition reporting. Don't say: | Richard Smith |
2012-05-07 | When we suppress an error due to SFINAE, stash the diagnostic away with the | Richard Smith |
2012-05-04 | Move Sema::VerifyIntegerConstantExpression() and | Douglas Gregor |
2012-05-04 | Switch RequireLiteralType() off of PartialDiagnostic. | Douglas Gregor |
2012-05-04 | Move Sema::RequireCompleteType() and Sema::RequireCompleteExprType() | Douglas Gregor |
2012-04-21 | move some stuff to .rodata | Nuno Lopes |
2012-04-17 | Implement DR1330 in C++11 mode, to support libstdc++4.7 which uses it. | Richard Smith |
2012-04-12 | s/isAtomicConversion/tryAtomicConversion/g, per Jordy's suggestion. | Douglas Gregor |
2012-04-12 | Compute standard conversion sequences for conversions to atomic | Douglas Gregor |
2012-04-11 | Clean up last commit as per dgregor's comments. | David Chisnall |
2012-04-11 | Allow c++ initialisers to initialise _Atomic fields. | David Chisnall |
2012-04-04 | Allow a conversion from the empty initializer list {} to an | Douglas Gregor |
2012-04-04 | When computing the conversion sequence in overload resolution | John McCall |
2012-04-02 | Finish PR10217: Ensure we say that a special member was implicitly, not | Richard Smith |