1. 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
  2. 28bbe4b Parsing/AST support for Structured Exception Handling by John Wiegley · 13 years ago
  3. 20c0da7 t/clang/type-traits by John Wiegley · 13 years ago
  4. 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
  5. 162e1c1 Support for C++11 (non-template) alias declarations. by Richard Smith · 13 years ago
  6. fc8f0e1 fix a bunch of comment typos found by codespell. Patch by by Chris Lattner · 13 years ago
  7. c6eb44b C1X: implement static asserts by Peter Collingbourne · 13 years ago
  8. 8a9013d Parse an '@' in an Objective-C++ class member specification, by Douglas Gregor · 13 years ago
  9. 1d20927 Fixup comments. by Anders Carlsson · 13 years ago
  10. 8a29ba0 Remove the last of ClassVirtSpecifiers. by Anders Carlsson · 13 years ago
  11. b184a18 Replace the call to ParseOptionalCXX0XClassVirtSpecifierSeq with code to only parse an optional 'final' keyword. by Anders Carlsson · 13 years ago
  12. 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
  13. b1f3968 Remove 'new' from virt-specifier since it's going to be removed in the next C++0x draft by Anders Carlsson · 13 years ago
  14. 0b7e678 Insomniac refactoring: change how the parser allocates attributes so that by John McCall · 13 years ago
  15. 0daaf32 Use ElaboratedType also for C. by Abramo Bagnara · 13 years ago
  16. 60618fa Propagate the new exception information to FunctionProtoType. by Sebastian Redl · 13 years ago
  17. f4e3cfb Add support for the OpenCL vec_step operator, by generalising and by Peter Collingbourne · 13 years ago
  18. a2026c9 Fixed source range for StaticAssertDecl and LinkageSpecDecl. Fixed source range for declarations using postfix types. by Abramo Bagnara · 13 years ago
  19. acba90f Fixed NamespaceDecl source range. by Abramo Bagnara · 13 years ago
  20. 7acafd0 Parser support for noexcept specifications. by Sebastian Redl · 13 years ago
  21. 059101f Push nested-name-specifier source-location information into dependent by Douglas Gregor · 13 years ago
  22. 9e87687 Reinstate the introduction of source-location information for by Douglas Gregor · 13 years ago
  23. 2786864 Revert r126748, my second attempt at nested-name-specifier source by Douglas Gregor · 13 years ago
  24. be38c5f Reinstate r126737, extending the generation of type-source location by Douglas Gregor · 13 years ago
  25. eee1d54 When parsing an out-of-line member function declaration, we must delay by John McCall · 14 years ago
  26. 4867347 PR9037: Allow override, final, and new as an extension on inline members. by Nico Weber · 14 years ago
  27. 15e14a2 Get rid of [[hiding]], [[override]] and [[base_check]]. by Anders Carlsson · 14 years ago
  28. f89e042 Get rid of the [[final]] C++0x attribute. by Anders Carlsson · 14 years ago
  29. ce93a7c Accept the C++0x override control keywords as an extension in C++98. This is OK since the new syntax is unambiguous and can't be confused with C++98 syntax. If anyone disagrees, please shout! by Anders Carlsson · 14 years ago
  30. dfc2f10 Mark classes as final or explicit. Diagnose when a class marked 'final' is used as a base. by Anders Carlsson · 14 years ago
  31. cc54d59 Parse class-virt-specifier-seqs. by Anders Carlsson · 14 years ago
  32. 46127a9 More work on ClassVirtSpecifiers. by Anders Carlsson · 14 years ago
  33. 69a8735 Pass the VirtSpecifiers along to Sema::ActOnCXXMemberDeclarator. by Anders Carlsson · 14 years ago
  34. 7eeb4ec Lazily initialize the 'final' and 'override' contextual keywords as suggested by Doug. by Anders Carlsson · 14 years ago
  35. 9ea416e Parse the optional semicolon after a C++ in-class member function by Douglas Gregor · 14 years ago
  36. dec0984 Fix warnings found by gcc-4.6, from -Wunused-but-set-variable and by Jeffrey Yasskin · 14 years ago
  37. d6c4eb6 Remove dead code. by Anders Carlsson · 14 years ago
  38. b971dbd Change ParseOptionalCXX0XVirtSpecifierSeq to take a VirtSpecifiers struct. by Anders Carlsson · 14 years ago
  39. 1f3b6fd Begin work on supporting "N3206: Override control: Eliminating Attributes", from by Anders Carlsson · 14 years ago
  40. cbb6748 Renamed CXXBaseOrMemberInitializer to CXXCtorInitializer. This is both shorter, by Sean Hunt · 14 years ago
  41. 3fb9e4b Implement pack expansion of base initializers, so that we can by Douglas Gregor · 14 years ago
  42. f90b27a Implement pack expansions whose pattern is a base-specifier. by Douglas Gregor · 14 years ago
  43. 7f040a9 Refactor how we collect attributes during parsing, and add slots for attributes by John McCall · 14 years ago
  44. a04426c Extend the parser to support pack expansions within exception by Douglas Gregor · 14 years ago
  45. 075f8f1 Added ParenType type node. by Abramo Bagnara · 14 years ago
  46. a88cefd Added struct/class syntactic info for c++0x scoped enum. by Abramo Bagnara · 14 years ago
  47. 45ab4b5 In some situations, TemplateArgumentLoc wasn't setting TypeSourceLoc (see by Craig Silverstein · 14 years ago
  48. 8113ecf Region-allocate all AttributeList objects from a factory object instead of manually managing them by Ted Kremenek · 14 years ago
  49. 78b8105 Diagnose attempst to template using declarations and using directives. by John McCall · 14 years ago
  50. 7d64271 tidy up by Chris Lattner · 14 years ago
  51. 729ad83 fix PR8380, a crash on invalid due to an illogical DeclSpec SourceRange being constructed. by Chris Lattner · 14 years ago
  52. a25c408 Tag references shouldn't ever get template parameter lists. by John McCall · 14 years ago
  53. 9a34edb Redirect templated friend class decls to a new Sema callback and by John McCall · 14 years ago
  54. d54eb44 Parse default arguments within member functions in source order, from by Douglas Gregor · 14 years ago
  55. 334d47e Add parsing support for Microsoft attributes. MS attributes will just be skipped and not inserted into the AST for now. by Francois Pichet · 14 years ago
  56. 1274ccd Implement C++0x scoped enumerations, from Daniel Wallin! (and tweaked a by Douglas Gregor · 14 years ago
  57. dab60ad Implement the C++0x "trailing return type" feature, e.g., by Douglas Gregor · 14 years ago
  58. 37bf9d2 Allow the use of C++0x deleted functions as an extension in C++98. by Anders Carlsson · 14 years ago
  59. a1a0478 Eliminate the comma locations from all of the Sema routines that deal by Douglas Gregor · 14 years ago
  60. 9ba23b4 Improve recovery when there is a stray ']' or ')' before the ';' at by Douglas Gregor · 14 years ago
  61. 751f692 Improve recovery when a comma is missing between enumerators in an by Douglas Gregor · 14 years ago
  62. b1f6fa4 Improve diagnostic and recovery when missing a comma between base or by Douglas Gregor · 14 years ago
  63. 88e64ca Enable inline namespaces in C++03 as an extension. by Sebastian Redl · 14 years ago
  64. 0133f52 Basic code completion support for the base and member initializers in by Douglas Gregor · 14 years ago
  65. d078e64 Parser support for inline namespaces by Sebastian Redl · 14 years ago
  66. f312b1e One who seeks knowledge learns something new every day. by John McCall · 14 years ago
  67. 09a63c9 Parse all kinds of declarations as part of a linkage-specification, by Douglas Gregor · 14 years ago
  68. 60d7b3a OwningExprResult -> ExprResult. This patch brought to you by by John McCall · 14 years ago
  69. b3d8748 Abstract out passing around types and kill off ActionBase. by John McCall · 14 years ago
  70. 9ae2f07 Kill off ExprArg (now just Expr*) and StmtArg (now just Stmt*). by John McCall · 14 years ago
  71. 2b5289b Push DeclGroupRefs and TemplateNames in an opaque but type-safe way by John McCall · 14 years ago
  72. ca0408f Sundry incremental steps towards killing off Action. by John McCall · 14 years ago
  73. d226f65 DeclPtrTy -> Decl * by John McCall · 14 years ago
  74. 1951085 Another step in the process of making the parser depend on Sema: by John McCall · 14 years ago
  75. 646395b -Make TokenID of IdentifierInfo read-only, remove setTokenID(). by Argyrios Kyrtzidis · 14 years ago
  76. b1d397c Allow multiple __declspec attributes after a class-key. by John McCall · 14 years ago
  77. 35f9a19 Fixed typedef inside extern "C". by Abramo Bagnara · 14 years ago
  78. 207014e Improve error recovery when presented with an ill-formed template-id by John McCall · 14 years ago
  79. 5606220 Add source location information to C++ base specifiers. by Nick Lewycky · 14 years ago
  80. c9068d7 Treat template parameters as part of the declaration-specifiers for the by John McCall · 14 years ago
  81. 23c94db Move the "current scope" state from the Parser into Action. This by Douglas Gregor · 14 years ago
  82. 926c4b4 Partial fix for PR7267 based on comments by John McCall on an earlier patch. by Chandler Carruth · 14 years ago
  83. 07976d2 When semantic analysis fail to introduce a class or class template, by Douglas Gregor · 14 years ago
  84. e0cc047 When parsing cached C++ method declarations/definitions, save the by Douglas Gregor · 14 years ago
  85. f13ca06 Make the "extra ';' inside a struct or union" diagnostic more by Douglas Gregor · 14 years ago
  86. e656325 Allow an asm label specifier on C++ methods, like GCC does. by Chris Lattner · 14 years ago
  87. 6206d53 Added AccessSpecDecl node. by Abramo Bagnara · 14 years ago
  88. 5ee3734 Don't try to parse class template specializations in C. It can only by Douglas Gregor · 14 years ago
  89. 42a4f66 Don't just skip over the entire tag definition if the parser action didn't by John McCall · 14 years ago
  90. dc84534 Improve code completion in failure cases in two ways: by Douglas Gregor · 14 years ago
  91. aec0371 Propagate access specifiers to anonymous union members nested within classes. by John McCall · 14 years ago
  92. 33f9924 mutable is a storage class that can follow a class/struct/union definition. Fixes PR7153 by Douglas Gregor · 14 years ago
  93. 95f1b15 Namespaces can only be defined at global or namespace scope. Fixes PR6596. by Douglas Gregor · 14 years ago
  94. d566381 Replace a char*/size pair with stringref. by Benjamin Kramer · 14 years ago
  95. 74256f5 Parse friend template ids as types instead of ending up in by John McCall · 14 years ago
  96. 9ab1454 Make CXXScopeSpec invalid when incomplete, and propagate that into any by Jeffrey Yasskin · 14 years ago
  97. 849b243 Reinstate my CodeModificationHint -> FixItHint renaming patch, without by Douglas Gregor · 14 years ago
  98. 275313c Revert r100008, which inexplicably breaks the clang-i686-darwin10 builder by Douglas Gregor · 14 years ago
  99. d0ebe08 Rename CodeModificationHint to FixItHint, since we've been using the by Douglas Gregor · 14 years ago
  100. 0b4c9b5 Support __attribute__((packed)) (along with other attributes) at the by Douglas Gregor · 14 years ago