1. 99831e4 User-defined literals: reject string and character UDLs in all places where the by Richard Smith · 12 years ago
  2. 0cc323c static_assert: Allow any string-literal as the message, not just a character by Richard Smith · 12 years ago
  3. 2287c5e Make late-parsed attributes follow the conventions of ordinary by DeLesley Hutchins · 12 years ago
  4. d8e4dac Fix decltype crash-on-invalid, if we don't find a matching ')' for an ill-formed by Richard Smith · 12 years ago
  5. c7b5543 Back out __decltype warning from r151377: we should either warn on all the GNU by Richard Smith · 12 years ago
  6. 39304fa __decltype is a GNU extension, not a C++11 extension. by Richard Smith · 12 years ago
  7. aa5ab26 Handle "#pragma GCC visibility" in a few more places. Switch over "#pragma pack" to use the same handling that gcc does. Fixes <rdar://problem/10871094> and <rdar://problem/10893316>. by Eli Friedman · 12 years ago
  8. 33deb35 Fix parsing and processing initializer lists in return statements and as direct member initializers. by Sebastian Redl · 12 years ago
  9. 76f3f69 Implement C++11 [expr.call]p11: If the operand to a decltype-specifier is a by Richard Smith · 12 years ago
  10. 552e299 Implement name mangling for lambda expressions that occur within the by Douglas Gregor · 12 years ago
  11. 3164c14 Fix crash-on-invalid for 'operator int[]()' in C++11. by David Blaikie · 12 years ago
  12. 55d23c9 Added location for template keyword in TemplateSpecializationTypeLoc. In the process removed some naming ambiguities. by Abramo Bagnara · 12 years ago
  13. f7ccbad Basic: import SmallString<> into clang namespace by Dylan Noblesmith · 12 years ago
  14. 8fe83e1 Move a method from IdentifierTable.h out of line and remove the SmallString include. by Benjamin Kramer · 12 years ago
  15. e4b9276 Added source location for the template keyword in AST template-id expressions. by Abramo Bagnara · 12 years ago
  16. fad03b7 Avoid redundant NNS qualification in constructor/destructor names. by Abramo Bagnara · 12 years ago
  17. f211662 Support decltype in member initializers. by David Blaikie · 12 years ago
  18. 65ba948 Fix code so that a SkipUntil will ignore semicolons when skipping a by Richard Trieu · 12 years ago
  19. 7984de3 Improve 0-argument -Wvexing-parse diagnostic by adding notes with fix-its: by Richard Smith · 12 years ago
  20. bdad7a2 Update C++11 scoped enumeration support to match the final proposal: by Richard Smith · 12 years ago
  21. 1c94c16 Extend the diagnostic for a ',' at the end of a declaration where a ';' was by Richard Smith · 12 years ago
  22. ffbe9b9 Mass rename C1x references to C11. The name hasn't proliferated like "C++0x" so this patch is surprisingly small. by Benjamin Kramer · 13 years ago
  23. b577757 Use the real end of the decltype expression. by David Blaikie · 13 years ago
  24. 42d6d0c Support decltype in nested-name-specifiers. by David Blaikie · 13 years ago
  25. 45fa560 When we notice that a member function is defined with "= delete" or "= by Douglas Gregor · 13 years ago
  26. efaa93a Tighten up the conditions under which we consider ourselves to be by Douglas Gregor · 13 years ago
  27. 7fe3878 Handle redundant 'typename' on base class specifications. by David Blaikie · 13 years ago
  28. 152aa4b Fix erroneous name-specifiers prior to decltypes better/correctly as per Doug's feedback. by David Blaikie · 13 years ago
  29. edae1a2 Initialize the BaseLoc for decltype base type specifications. by David Blaikie · 13 years ago
  30. 22216eb Fix cases where the optional nested-name-specifier erroneously preceeded a decltype-specification when specifying a base type. by David Blaikie · 13 years ago
  31. 09048df Support the use of decltype for specifying base types. Fixes PR11216. by David Blaikie · 13 years ago
  32. 3896fc5 Rework Microsoft __if_exists/__if_not_exists parsing and semantic by Douglas Gregor · 13 years ago
  33. 841804b Add -Wc++98-compat warnings for uses of the new keywords 'alignof', 'char16_t', by Richard Smith · 13 years ago
  34. a2b4e5d When we end up having to parse the initializer of a C++ member early by Douglas Gregor · 13 years ago
  35. c35cba4 Fixed merge-mistake where ActOnAccessSpecifier was called twice for every access specifier. The testcase has been changed to catch this too. by Erik Verbruggen · 13 years ago
  36. 7fe6208 Implement -Wc++98-compat warnings for the parser. by Richard Smith · 13 years ago
  37. 8b11b5e Refactor: remove redundant check for 'final' specifier when parsing class/struct definition. by Richard Smith · 13 years ago
  38. 05f9931 Rename an ExtWarn to ext_ for consistency. by Richard Smith · 13 years ago
  39. 29e3a31 Don't warn about use of 'final' in ill-formed C++98 code which didn't use by Richard Smith · 13 years ago
  40. 41be673 -Wc++98-compat: warn on C++11 attributes and alignas. by Richard Smith · 13 years ago
  41. 5f1c822 Allow for annotate attributes after access specifiers. When such by Erik Verbruggen · 13 years ago
  42. 13f8daf Fix crash-on-invalid, improve error recovery, and test coverage for missing colon after access specifiers in C++ by David Blaikie · 13 years ago
  43. 4a8dfb5 Introduce BalancedDelimiterTracker, to better track open/close by Douglas Gregor · 13 years ago
  44. 2c712f5 Move some bool flags out of function parameter lists. by Kaelyn Uhrain · 13 years ago
  45. 147545d Parse the initializer for a class member after handling its by Douglas Gregor · 13 years ago
  46. 8828ee7 Add braces around do-while body. The lack of them gives me the chills by Douglas Gregor · 13 years ago
  47. cdda47f Parse attributes written in an ObjC method parameter type as by John McCall · 13 years ago
  48. 82d0b0a Add support for alignment-specifiers in C1X and C++11, remove by Peter Collingbourne · 13 years ago
  49. 3497fdf Add support for parsing an attribute-specifier-seq containing multiple by Peter Collingbourne · 13 years ago
  50. 480b53c Diagnose attempts to use 'using typename' with a non-identifier name, by Douglas Gregor · 13 years ago
  51. 6df6548 Correctly parse braced member initializers (even in delayed parsing) and correctly pass by Sebastian Redl · 13 years ago
  52. 966a8a5 Fix up comment now that 'new' is no longer a virt-specifier, from Aaron Ballman by Douglas Gregor · 13 years ago
  53. 62ec1f2 Rename LangOptions::Microsoft to LangOptions::MicrosoftExt to make it clear that this flag must be used only for Microsoft extensions and not emulation; to avoid confusion with the new LangOptions::MicrosoftMode flag. by Francois Pichet · 13 years ago
  54. d023aec Specializations cannot be module-hidden. Diagnose attempts to do so. by Douglas Gregor · 13 years ago
  55. e761230 __module_private__ is inherited by redeclarations of an entity, and by Douglas Gregor · 13 years ago
  56. 8d267c5 Modules: introduce the __module_private__ declaration specifier, which by Douglas Gregor · 13 years ago
  57. eff98fc Thread Safety: Patch to implement delayed parsing of attributes within a by Caitlin Sadowski · 13 years ago
  58. 74e611a Add test case for defaulted copy and move structure validation. by Sebastian Redl · 13 years ago
  59. 7d10087 Support code-completion for C++ inline methods and ObjC buffering methods. by Argyrios Kyrtzidis · 13 years ago
  60. 9735c5e objc - Simplify switing objc decl context by using a context switching object. by Fariborz Jahanian · 13 years ago
  61. a28948f Restore patch I reversed in r138040. Known buildbot failures are resolved. by Fariborz Jahanian · 13 years ago
  62. af1fc7a Track in the AST whether a function is constexpr. by Richard Smith · 13 years ago
  63. ae7902c Parsing of C++0x lambda expressions, from John Freeman with help from by Douglas Gregor · 13 years ago
  64. 6887614 Turn off __has_feature(is_empty) and __has_feature(is_pod) if the by Douglas Gregor · 13 years ago
  65. 5f9e272 remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.h imports by Chris Lattner · 13 years ago
  66. cf6b0a2 PR10359: Template declarations which define classes are not permitted to also contain declarators. Previously we would accept code like this: by Richard Smith · 13 years ago
  67. c89edf5 Fix AST representations of alias-declarations which define tag types. Inside classes, the tag types need to have an associated access specifier, and inside function definitions, they need to be included in the declarations of the DeclStmt. These issues manifested as assertions during template instantiation, and also in a WIP constexpr patch. by Richard Smith · 13 years ago
  68. 555f57e When deciding how to parse "= something" as part of a member by Douglas Gregor · 13 years ago
  69. 25a7676 Introduce DelayedCleanupPool useful for simplifying clean-up of certain resources that, while their by Argyrios Kyrtzidis · 13 years ago
  70. c2cdd53 Don't assert on initialized typedef declarations in classes: by Richard Smith · 13 years ago
  71. 7a614d8 Implement support for C++11 in-class initialization of non-static data members. by Richard Smith · 13 years ago
  72. dbef1bb Parse C++0x generalized initializers. by Sebastian Redl · 13 years ago
  73. 9910df0 Silence sign compare warning. by Benjamin Kramer · 13 years ago
  74. f858bd8 Add a fix-it and better error recovery for improperly nested namespaces. This will give a better error message for cases such as "namespace foo::bar::baz {}" and a suggested fix-it of "namespace foo { namespace bar { namespace baz {} } }" by Richard Trieu · 13 years ago
  75. 563a645 Add support for Microsoft __if_exists, __if_not_exists extension at class scope. by Francois Pichet · 13 years ago
  76. ca63c20 Implement a new type node, UnaryTransformType, designed to represent a by Sean Hunt · 13 years ago
  77. db5d44b Implement __underlying_type for libc++. by Sean Hunt · 13 years ago
  78. e4246a6 Properly parse the 'default' and 'delete' keywords. by Sean Hunt · 13 years ago
  79. 6a24747 In Microsoft mode, allow pure specifier (=0) on inline functions declared at class scope. by Francois Pichet · 13 years ago
  80. bb85f8e Per Richard's suggestion, rename DefLoc to DefaultLoc where it appears. by Sean Hunt · 13 years ago
  81. fe2695e Do defaulted constructors properly. by Sean Hunt · 13 years ago
  82. 5f802e5 Revert r130912 in order to approach defaulted functions from the other by Sean Hunt · 13 years ago
  83. 536e9c1 Slight tweak to alias template error handling: don't guess that a template-id in an alias declaration was meant to be a specialization. Use a generic, but more accurate, diagnostic. by Richard Smith · 13 years ago
  84. 3e4c6c4 Implement support for C++0x alias templates. by Richard Smith · 13 years ago
  85. ad7ec12 Implement some framework for defaulted constructors. by Sean Hunt · 13 years ago
  86. 0f4be74 When parsing a template friend declaration we dropped the template by Chandler Carruth · 13 years ago
  87. f41e33c Fixed source range for extern linkage specification without braces. by Abramo Bagnara · 13 years ago
  88. b467cda White-list yet more type trait names, since they're used as by Douglas Gregor · 13 years ago
  89. 877222e libstdc++ 4.2 also uses __is_same as a struct name, which conflicts with our new type trait __is_same by Douglas Gregor · 13 years ago
  90. 28bbe4b Parsing/AST support for Structured Exception Handling by John Wiegley · 13 years ago
  91. 20c0da7 t/clang/type-traits by John Wiegley · 13 years ago
  92. d941fa4 Make the invalid declarator recovery when parsing members work the same as when parsing global decls. It's still rather broken (skipping much too far when the declarator belongs to a function definition), but at least not so broken as to mismatch braces. Tested by the removal of the fixme in the template test case. by Sebastian Redl · 13 years ago
  93. 162e1c1 Support for C++11 (non-template) alias declarations. by Richard Smith · 13 years ago
  94. fc8f0e1 fix a bunch of comment typos found by codespell. Patch by by Chris Lattner · 13 years ago
  95. c6eb44b C1X: implement static asserts by Peter Collingbourne · 13 years ago
  96. 8a9013d Parse an '@' in an Objective-C++ class member specification, by Douglas Gregor · 13 years ago
  97. 1d20927 Fixup comments. by Anders Carlsson · 13 years ago
  98. 8a29ba0 Remove the last of ClassVirtSpecifiers. by Anders Carlsson · 13 years ago
  99. b184a18 Replace the call to ParseOptionalCXX0XClassVirtSpecifierSeq with code to only parse an optional 'final' keyword. by Anders Carlsson · 13 years ago
  100. 2c3ee54 Get rid of handling of the 'explicit' keyword from class-head. We still parse it though, although that will change shortly. by Anders Carlsson · 13 years ago