| Commit message (Expand) | Author | Age | Files | Lines |
* | Add new warning that warns when invoking 'delete' on a polymorphic, non-final... | Argyrios Kyrtzidis | 2011-05-24 | 1 | -0/+14 |
* | The array-size operand to a new-expression is not necessarily a size_t. | John McCall | 2011-05-15 | 1 | -2/+2 |
* | Implement the __is_trivially_copyable type trait | Alexis Hunt | 2011-05-13 | 1 | -0/+3 |
* | Implement defaulting of destructors. | Alexis Hunt | 2011-05-12 | 1 | -23/+39 |
* | Hrm | Alexis Hunt | 2011-05-12 | 1 | -18/+21 |
* | Rename "hasTrivialConstructor" to "hasTrivialDefaultConstructor" and | Alexis Hunt | 2011-05-09 | 1 | -4/+4 |
* | Look at all the record redeclaration when looking for a uuid attribute. | Francois Pichet | 2011-05-08 | 1 | -4/+5 |
* | Add support for Microsoft __if_exists and __if_not_exists construct inside fu... | Francois Pichet | 2011-05-06 | 1 | -0/+15 |
* | Remove a stale comment, it no longer applied after my cleanups. | Chandler Carruth | 2011-05-01 | 1 | -8/+5 |
* | Move several more type traits' implementations into the AST. A few were | Chandler Carruth | 2011-05-01 | 1 | -12/+6 |
* | Switch __is_scalar to use the isScalarType predicate rather than | Chandler Carruth | 2011-05-01 | 1 | -6/+1 |
* | Have the array type traits build an expression with type 'size_t' | Chandler Carruth | 2011-05-01 | 1 | -1/+8 |
* | Remove an inapplicable and completely out of place comment. The type is in fa... | Chandler Carruth | 2011-05-01 | 1 | -1/+1 |
* | Remove more dead code for emitting diagnostics. The callers of these | Chandler Carruth | 2011-05-01 | 1 | -17/+8 |
* | Simplify the flow of some of the array type trait code. | Chandler Carruth | 2011-05-01 | 1 | -13/+4 |
* | Convert the expression trait evaluation to a static function and | Chandler Carruth | 2011-05-01 | 1 | -20/+19 |
* | Remove the default case from the unary type trait evaluation function, | Chandler Carruth | 2011-05-01 | 1 | -2/+1 |
* | Mark that this function ends in a covering switch statement with every | Chandler Carruth | 2011-05-01 | 1 | -0/+2 |
* | Remove the type traits UTT_IsLvalueExpr and UTT_IsRvalueExpr. | Chandler Carruth | 2011-05-01 | 1 | -5/+0 |
* | More cleanup of the type traits implementation. | Chandler Carruth | 2011-05-01 | 1 | -81/+110 |
* | Order the type traits according to the standard's listing of unary type | Chandler Carruth | 2011-05-01 | 1 | -54/+79 |
* | Begin cleaning up type trait expression implementations and settling on | Chandler Carruth | 2011-05-01 | 1 | -21/+21 |
* | Extract a function to impose the completeness requirement on unary type | Chandler Carruth | 2011-04-30 | 1 | -23/+76 |
* | Hoist all of the type-specific trait logic for __is_standard_layout into | Chandler Carruth | 2011-04-30 | 1 | -16/+1 |
* | Completely re-implement the core logic behind the __is_standard_layout | Chandler Carruth | 2011-04-30 | 1 | -1/+1 |
* | A few corrections to type traits that missed the last checkin | John Wiegley | 2011-04-28 | 1 | -19/+46 |
* | Implementation of Embarcadero array type traits | John Wiegley | 2011-04-28 | 1 | -0/+88 |
* | t/clang/type-traits | John Wiegley | 2011-04-27 | 1 | -4/+77 |
* | Make yet another placeholder type, this one marking that an expression is a b... | John McCall | 2011-04-26 | 1 | -10/+5 |
* | t/clang/expr-traits | John Wiegley | 2011-04-25 | 1 | -0/+39 |
* | Implement basic __is_trivial type-trait support, enough to close PR9472. | Chandler Carruth | 2011-04-23 | 1 | -0/+1 |
* | Forbid the use of C++ new/delete to allocate/free objects within an | Douglas Gregor | 2011-04-15 | 1 | -2/+8 |
* | Simplify calling CheckPlaceholderExpr, converge on it in a few places, | John McCall | 2011-04-10 | 1 | -24/+3 |
* | Use ExprResult& instead of Expr *& in Sema | John Wiegley | 2011-04-08 | 1 | -233/+282 |
* | In C++ the argument of logical not should always be bool. Added missing impli... | Abramo Bagnara | 2011-04-07 | 1 | -13/+3 |
* | Make ChainedIncludesSource an ExternalSemaSource, otherwise initialization of... | Sebastian Redl | 2011-03-31 | 1 | -1/+1 |
* | Support for Transparent unions used as overloadable | Fariborz Jahanian | 2011-03-23 | 1 | -0/+9 |
* | Implement a new 'availability' attribute, that allows one to specify | Douglas Gregor | 2011-03-23 | 1 | -3/+3 |
* | Fix an objc++ diagnostic initializing objc pointers. | Fariborz Jahanian | 2011-03-21 | 1 | -4/+10 |
* | Fix PR9488: 'auto' type substitution can fail (for instance, if it creates a ... | Richard Smith | 2011-03-17 | 1 | -4/+6 |
* | Clean up our handling of template-ids that resolve down to a single | Douglas Gregor | 2011-03-16 | 1 | -7/+10 |
* | Make deallocation functions implicitly noexcept in C++0x. | Sebastian Redl | 2011-03-14 | 1 | -6/+24 |
* | -fwritable-strings should silence warnings about the deprecated string | Douglas Gregor | 2011-03-14 | 1 | -1/+2 |
* | Instead of storing an ASTContext* in FunctionProtoTypes with computed noexcep... | Sebastian Redl | 2011-03-13 | 1 | -3/+3 |
* | Propagate the new exception information to FunctionProtoType. | Sebastian Redl | 2011-03-12 | 1 | -5/+7 |
* | Fixed InnerLocStart. | Abramo Bagnara | 2011-03-09 | 1 | -2/+2 |
* | Fixed source range for all DeclaratorDecl's. | Abramo Bagnara | 2011-03-08 | 1 | -4/+5 |
* | Removed trailing whitespace as a test commit | John Wiegley | 2011-03-08 | 1 | -1/+1 |
* | Produce a diagnostic for unused overloaded expressions, from Faisal Vali! | Douglas Gregor | 2011-03-07 | 1 | -0/+23 |
* | Reinstate r127112, "Propagate new-style exception spec information to ExtProt... | Sebastian Redl | 2011-03-06 | 1 | -1/+1 |