| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Add the Microsoft __is_interface_class type trait. | John McCall | 2012-09-25 | 1 | -0/+1 |
* | If a comma operator is followed by a token which unambiguously indicates the | Richard Smith | 2012-09-18 | 1 | -0/+22 |
* | Remove unused macro definition | Douglas Gregor | 2012-09-11 | 1 | -2/+0 |
* | Extend the "__is_pod" hack, which demotes various type trait keywords | Douglas Gregor | 2012-08-30 | 1 | -1/+50 |
* | Remove ASTOwningVector, it doesn't own anything and provides no value over Sm... | Benjamin Kramer | 2012-08-23 | 1 | -5/+5 |
* | Rip out remnants of move semantic emulation and smart pointers in Sema. | Benjamin Kramer | 2012-08-23 | 1 | -30/+30 |
* | Improvements to vexing-parse warnings. Make the no-parameters case more | Richard Smith | 2012-07-30 | 1 | -1/+1 |
* | Add support for the C11 _Alignof keyword. | Jordan Rose | 2012-06-30 | 1 | -9/+17 |
* | Support L__FUNCTION__ in microsoft mode, PR11789 | Nico Weber | 2012-06-23 | 1 | -0/+1 |
* | Documentation cleanup: fixing file headers to use Doxygen \file markup while | James Dennett | 2012-06-19 | 1 | -1/+3 |
* | Documentation cleanup: | James Dennett | 2012-06-17 | 1 | -43/+65 |
* | Check the parameter lists and return type of both blocks and lambdas | Douglas Gregor | 2012-06-15 | 1 | -5/+5 |
* | Documentation cleanup: escape Objective-C @ symbols in Doxygen comments. | James Dennett | 2012-06-15 | 1 | -5/+5 |
* | Whenever we have a BalancedDelimiterTracker, we have a 'nested' scope | Douglas Gregor | 2012-06-06 | 1 | -1/+0 |
* | Revert most of r154844, which was disabled in r155975. Keep around the | Richard Smith | 2012-05-02 | 1 | -1/+1 |
* | Implement the last part of C++ [class.mem]p2, delaying the parsing of | Douglas Gregor | 2012-04-16 | 1 | -1/+1 |
* | Add an AttributedStmt type to represent a statement with C++11 attributes | Richard Smith | 2012-04-14 | 1 | -3/+1 |
* | Disambiguation of '[[': | Richard Smith | 2012-04-10 | 1 | -1/+9 |
* | For PR11916: Add support for g++'s __int128 keyword. Unlike __int128_t, this is | Richard Smith | 2012-04-04 | 1 | -0/+1 |
* | Enter an expression evaluation context when parsing | John McCall | 2012-04-04 | 1 | -1/+7 |
* | Unify naming of LangOptions variable/get function across the Clang stack (Lex... | David Blaikie | 2012-03-11 | 1 | -32/+32 |
* | Support for raw and template forms of numeric user-defined literals, | Richard Smith | 2012-03-09 | 1 | -9/+4 |
* | Streamline BalancedDelimiterTracker, by eliminating the duplicate | Douglas Gregor | 2012-03-08 | 1 | -6/+11 |
* | Add clang support for new Objective-C literal syntax for NSDictionary, NSArray, | Ted Kremenek | 2012-03-06 | 1 | -0/+13 |
* | User-defined literals: reject string and character UDLs in all places where the | Richard Smith | 2012-03-06 | 1 | -8/+15 |
* | Avoid examining the AST from the parser, and simplify somewhat. | Richard Smith | 2012-03-01 | 1 | -15/+13 |
* | Reject 'a = {0} = {0}' rather than parsing it as '(a = {0}) = {0}'. Also | Richard Smith | 2012-03-01 | 1 | -12/+28 |
* | Make the odr-use logic work correctly for constant-expressions. PR12006. | Eli Friedman | 2012-02-29 | 1 | -1/+2 |
* | Half of PR12088: parse braced-init-lists on the RHS of assignment operators. | Richard Smith | 2012-02-26 | 1 | -3/+14 |
* | ArrayRef'ize various functions in the AST/Parser/Sema. | Ahmed Charles | 2012-02-25 | 1 | -4/+4 |
* | Implement a new type trait __is_trivially_constructible(T, Args...) | Douglas Gregor | 2012-02-24 | 1 | -0/+3 |
* | Provide the __is_trivially_assignable type trait, which provides | Douglas Gregor | 2012-02-23 | 1 | -0/+1 |
* | Fix typo correction of template arguments to once again allow type names. | Kaelyn Uhrain | 2012-02-22 | 1 | -2/+2 |
* | Change wording of warning about using __bridge casts in non-ARC. | Ted Kremenek | 2012-02-18 | 1 | -1/+1 |
* | Reject continue/break statements within members of local functions nested within | Richard Smith | 2012-02-17 | 1 | -1/+0 |
* | In Objective-C++, allow the keyword 'class' to be used as a property | Douglas Gregor | 2012-02-16 | 1 | -6/+20 |
* | Represent C++ direct initializers as ParenListExprs before semantic analysis | Sebastian Redl | 2012-02-11 | 1 | -2/+2 |
* | Make parsing of objc @implementations more robust. | Argyrios Kyrtzidis | 2012-02-07 | 1 | -1/+2 |
* | Added source location for the template keyword in AST template-id expressions. | Abramo Bagnara | 2012-01-27 | 1 | -7/+8 |
* | Avoid correcting unknown identifiers to types where types aren't allowed. | Kaelyn Uhrain | 2012-01-25 | 1 | -10/+39 |
* | Support decltype as a simple-type-specifier. | David Blaikie | 2012-01-24 | 1 | -0/+1 |
* | Make clang's AST model sizeof and typeof with potentially-evaluated operands ... | Eli Friedman | 2012-01-21 | 1 | -16/+2 |
* | For Lexer's isAt[Start/End]OfMacroExpansion add an out parameter for the macro | Argyrios Kyrtzidis | 2012-01-19 | 1 | -2/+2 |
* | Stub out the Sema interface for lambda expressions, and change the parser to ... | Eli Friedman | 2012-01-04 | 1 | -1/+6 |
* | Mass rename C1x references to C11. The name hasn't proliferated like "C++0x" ... | Benjamin Kramer | 2011-12-23 | 1 | -8/+8 |
* | Fix a parser bug that prevented it from correctly parsing explicit construct ... | Sebastian Redl | 2011-12-22 | 1 | -1/+2 |
* | Unlike in C++03, a constant-expression is not an unevaluated operand in C++11. | Richard Smith | 2011-12-20 | 1 | -7/+8 |
* | Refine error diagnostic for using bridged casts when not using ARC. | Ted Kremenek | 2011-12-20 | 1 | -3/+4 |
* | objc-arc: bridge casts in non-arc mode are now | Fariborz Jahanian | 2011-12-19 | 1 | -1/+1 |
* | objc-arc: bridge casts in non-objc-arc mode are ignord. | Fariborz Jahanian | 2011-12-19 | 1 | -6/+16 |