Age | Commit message (Expand) | Author |
2013-05-04 | Separate out and special-case the diagnostic for 'auto' in a | Richard Smith |
2013-04-30 | Don't treat a non-deduced 'auto' type as being type-dependent. Instead, there | Richard Smith |
2013-04-26 | Implement C++1y decltype(auto). | Richard Smith |
2013-03-27 | Implement compiler intrinsics needed for compatibility with MSVC 2012 <type_t... | Joao Matos |
2013-03-26 | Implement special-case name lookup for inheriting constructors: member | Richard Smith |
2013-02-20 | Include llvm::Optional in clang/Basic/LLVM.h | David Blaikie |
2013-02-20 | Process and handle attributes on conditions and for loop variables. Process and | Richard Smith |
2013-01-28 | Finish semantic analysis for [[carries_dependency]] attribute. | Richard Smith |
2013-01-12 | Remove useless 'llvm::' qualifier from names like StringRef and others that are | Dmitri Gribenko |
2013-01-02 | s/CXX0X/CXX11/g, except for __GNU_EXPERIMENTAL_CXX0X__, and update a few near... | Richard Smith |
2013-01-02 | s/CPlusPlus0x/CPlusPlus11/g | Richard Smith |
2012-12-20 | Revert r170500. It over-zealously converted *ALL* things named Attributes, wh... | Bill Wendling |
2012-12-19 | Rename the 'Attributes' class to 'Attribute'. It's going to represent a singl... | Bill Wendling |
2012-12-04 | Sort all of Clang's files under 'lib', and fix up the broken headers | Chandler Carruth |
2012-11-29 | Fix sentence construction-o. | Nico Weber |
2012-11-02 | When finding a '(' after '::', emit error with hint to remove '(' and matching | Richard Trieu |
2012-10-20 | DR1473: Do not require a space between operator"" and the ud-suffix in a | Richard Smith |
2012-10-04 | Fixed FunctionTypeLoc source range. | Abramo Bagnara |
2012-09-26 | Fix an edge case of mangling involving the combination of a lambda and typeid. | Eli Friedman |
2012-09-25 | Add the Microsoft __is_interface_class type trait. | John McCall |
2012-08-24 | Fix a few -Wdocumentation warnings. | Dmitri Gribenko |
2012-08-23 | Now that ASTMultiPtr is nothing more than a array reference, make it a Mutabl... | Benjamin Kramer |
2012-08-23 | Remove ASTOwningVector, it doesn't own anything and provides no value over Sm... | Benjamin Kramer |
2012-08-23 | Rip out remnants of move semantic emulation and smart pointers in Sema. | Benjamin Kramer |
2012-08-20 | PR13619: Make sure we're not at EOF before looking at NextToken(). | Richard Smith |
2012-08-18 | PR41111, PR5925, PR13210: Teach tentative parsing to annotate identifiers and | Richard Smith |
2012-08-09 | In 'delete []', the '[]' never starts a lambda. Update a FIXME with a standar... | Richard Smith |
2012-07-31 | Tweak code-completion heuristics deciding between a lambda | Douglas Gregor |
2012-07-31 | When we encounter a code-completion token while parsing an ill-formed | Douglas Gregor |
2012-07-30 | Improvements to vexing-parse warnings. Make the no-parameters case more | Richard Smith |
2012-06-23 | Clean up a large number of C++11 attribute parse issues, including parsing | Sean Hunt |
2012-06-18 | Extend the error recovery for a template-argument-list terminated by '>>' to | Richard Smith |
2012-06-15 | Move isCXXSimpleTypeSpecifier from Parser to Sema and tweak it for wider use. | Kaelyn Uhrain |
2012-06-12 | If parsing a trailing-return-type fails, don't pretend we didn't have one at | Richard Smith |
2012-06-06 | Whenever we have a BalancedDelimiterTracker, we have a 'nested' scope | Douglas Gregor |
2012-05-02 | Revert most of r154844, which was disabled in r155975. Keep around the | Richard Smith |
2012-04-16 | Implement the last part of C++ [class.mem]p2, delaying the parsing of | Douglas Gregor |
2012-04-16 | Implement C++11 [expr.prim.general]p3, which permits the use of 'this' | Douglas Gregor |
2012-04-14 | Parser: Don't manage TemplateAnnotationIds in a delayed cleanup pool. | Benjamin Kramer |
2012-04-10 | Disambiguation of '[[': | Richard Smith |
2012-04-04 | For PR11916: Add support for g++'s __int128 keyword. Unlike __int128_t, this is | Richard Smith |
2012-03-12 | Fix parsing of type-specifier-seq's. Types are syntactically allowed to be | Richard Smith |
2012-03-11 | Unify naming of LangOptions variable/get function across the Clang stack (Lex... | David Blaikie |
2012-03-08 | Fix a couple of issues with literal-operator-id parsing, and provide recovery | Richard Smith |
2012-03-06 | User-defined literals: reject string and character UDLs in all places where the | Richard Smith |
2012-02-24 | Implement a new type trait __is_trivially_constructible(T, Args...) | Douglas Gregor |
2012-02-23 | Provide the __is_trivially_assignable type trait, which provides | Douglas Gregor |
2012-02-22 | Accept braced-init-lists in conditions, and, in passing, dramatically improve | Richard Smith |
2012-02-21 | In the conflict between C++11 [expr.prim.general]p4, which declares | Douglas Gregor |
2012-02-20 | Basic support for name mangling of C++11 lambda expressions. Because | Douglas Gregor |