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