1. 4a8dfb5 Introduce BalancedDelimiterTracker, to better track open/close by Douglas Gregor · 13 years ago
  2. 2c712f5 Move some bool flags out of function parameter lists. by Kaelyn Uhrain · 13 years ago
  3. 147545d Parse the initializer for a class member after handling its by Douglas Gregor · 13 years ago
  4. 8828ee7 Add braces around do-while body. The lack of them gives me the chills by Douglas Gregor · 13 years ago
  5. cdda47f Parse attributes written in an ObjC method parameter type as by John McCall · 13 years ago
  6. 82d0b0a Add support for alignment-specifiers in C1X and C++11, remove by Peter Collingbourne · 13 years ago
  7. 3497fdf Add support for parsing an attribute-specifier-seq containing multiple by Peter Collingbourne · 13 years ago
  8. 480b53c Diagnose attempts to use 'using typename' with a non-identifier name, by Douglas Gregor · 13 years ago
  9. 6df6548 Correctly parse braced member initializers (even in delayed parsing) and correctly pass by Sebastian Redl · 13 years ago
  10. 966a8a5 Fix up comment now that 'new' is no longer a virt-specifier, from Aaron Ballman by Douglas Gregor · 13 years ago
  11. 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
  12. d023aec Specializations cannot be module-hidden. Diagnose attempts to do so. by Douglas Gregor · 13 years ago
  13. e761230 __module_private__ is inherited by redeclarations of an entity, and by Douglas Gregor · 13 years ago
  14. 8d267c5 Modules: introduce the __module_private__ declaration specifier, which by Douglas Gregor · 13 years ago
  15. eff98fc Thread Safety: Patch to implement delayed parsing of attributes within a by Caitlin Sadowski · 13 years ago
  16. 74e611a Add test case for defaulted copy and move structure validation. by Sebastian Redl · 13 years ago
  17. 7d10087 Support code-completion for C++ inline methods and ObjC buffering methods. by Argyrios Kyrtzidis · 13 years ago
  18. 9735c5e objc - Simplify switing objc decl context by using a context switching object. by Fariborz Jahanian · 13 years ago
  19. a28948f Restore patch I reversed in r138040. Known buildbot failures are resolved. by Fariborz Jahanian · 13 years ago
  20. af1fc7a Track in the AST whether a function is constexpr. by Richard Smith · 13 years ago
  21. ae7902c Parsing of C++0x lambda expressions, from John Freeman with help from by Douglas Gregor · 13 years ago
  22. 6887614 Turn off __has_feature(is_empty) and __has_feature(is_pod) if the by Douglas Gregor · 13 years ago
  23. 5f9e272 remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.h imports by Chris Lattner · 13 years ago
  24. 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
  25. 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
  26. 555f57e When deciding how to parse "= something" as part of a member by Douglas Gregor · 13 years ago
  27. 25a7676 Introduce DelayedCleanupPool useful for simplifying clean-up of certain resources that, while their by Argyrios Kyrtzidis · 13 years ago
  28. c2cdd53 Don't assert on initialized typedef declarations in classes: by Richard Smith · 13 years ago
  29. 7a614d8 Implement support for C++11 in-class initialization of non-static data members. by Richard Smith · 13 years ago
  30. dbef1bb Parse C++0x generalized initializers. by Sebastian Redl · 13 years ago
  31. 9910df0 Silence sign compare warning. by Benjamin Kramer · 13 years ago
  32. 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
  33. 563a645 Add support for Microsoft __if_exists, __if_not_exists extension at class scope. by Francois Pichet · 13 years ago
  34. ca63c20 Implement a new type node, UnaryTransformType, designed to represent a by Sean Hunt · 13 years ago
  35. db5d44b Implement __underlying_type for libc++. by Sean Hunt · 13 years ago
  36. e4246a6 Properly parse the 'default' and 'delete' keywords. by Sean Hunt · 13 years ago
  37. 6a24747 In Microsoft mode, allow pure specifier (=0) on inline functions declared at class scope. by Francois Pichet · 13 years ago
  38. bb85f8e Per Richard's suggestion, rename DefLoc to DefaultLoc where it appears. by Sean Hunt · 13 years ago
  39. fe2695e Do defaulted constructors properly. by Sean Hunt · 13 years ago
  40. 5f802e5 Revert r130912 in order to approach defaulted functions from the other by Sean Hunt · 13 years ago
  41. 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
  42. 3e4c6c4 Implement support for C++0x alias templates. by Richard Smith · 13 years ago
  43. ad7ec12 Implement some framework for defaulted constructors. by Sean Hunt · 13 years ago
  44. 0f4be74 When parsing a template friend declaration we dropped the template by Chandler Carruth · 13 years ago
  45. f41e33c Fixed source range for extern linkage specification without braces. by Abramo Bagnara · 13 years ago
  46. b467cda White-list yet more type trait names, since they're used as by Douglas Gregor · 13 years ago
  47. 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
  48. 28bbe4b Parsing/AST support for Structured Exception Handling by John Wiegley · 13 years ago
  49. 20c0da7 t/clang/type-traits by John Wiegley · 13 years ago
  50. 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
  51. 162e1c1 Support for C++11 (non-template) alias declarations. by Richard Smith · 13 years ago
  52. fc8f0e1 fix a bunch of comment typos found by codespell. Patch by by Chris Lattner · 13 years ago
  53. c6eb44b C1X: implement static asserts by Peter Collingbourne · 13 years ago
  54. 8a9013d Parse an '@' in an Objective-C++ class member specification, by Douglas Gregor · 13 years ago
  55. 1d20927 Fixup comments. by Anders Carlsson · 13 years ago
  56. 8a29ba0 Remove the last of ClassVirtSpecifiers. by Anders Carlsson · 13 years ago
  57. b184a18 Replace the call to ParseOptionalCXX0XClassVirtSpecifierSeq with code to only parse an optional 'final' keyword. by Anders Carlsson · 13 years ago
  58. 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
  59. 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
  60. 0b7e678 Insomniac refactoring: change how the parser allocates attributes so that by John McCall · 13 years ago
  61. 0daaf32 Use ElaboratedType also for C. by Abramo Bagnara · 13 years ago
  62. 60618fa Propagate the new exception information to FunctionProtoType. by Sebastian Redl · 13 years ago
  63. f4e3cfb Add support for the OpenCL vec_step operator, by generalising and by Peter Collingbourne · 13 years ago
  64. a2026c9 Fixed source range for StaticAssertDecl and LinkageSpecDecl. Fixed source range for declarations using postfix types. by Abramo Bagnara · 13 years ago
  65. acba90f Fixed NamespaceDecl source range. by Abramo Bagnara · 13 years ago
  66. 7acafd0 Parser support for noexcept specifications. by Sebastian Redl · 13 years ago
  67. 059101f Push nested-name-specifier source-location information into dependent by Douglas Gregor · 13 years ago
  68. 9e87687 Reinstate the introduction of source-location information for by Douglas Gregor · 13 years ago
  69. 2786864 Revert r126748, my second attempt at nested-name-specifier source by Douglas Gregor · 13 years ago
  70. be38c5f Reinstate r126737, extending the generation of type-source location by Douglas Gregor · 13 years ago
  71. eee1d54 When parsing an out-of-line member function declaration, we must delay by John McCall · 13 years ago
  72. 4867347 PR9037: Allow override, final, and new as an extension on inline members. by Nico Weber · 13 years ago
  73. 15e14a2 Get rid of [[hiding]], [[override]] and [[base_check]]. by Anders Carlsson · 13 years ago
  74. f89e042 Get rid of the [[final]] C++0x attribute. by Anders Carlsson · 13 years ago
  75. 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 · 13 years ago
  76. dfc2f10 Mark classes as final or explicit. Diagnose when a class marked 'final' is used as a base. by Anders Carlsson · 13 years ago
  77. cc54d59 Parse class-virt-specifier-seqs. by Anders Carlsson · 13 years ago
  78. 46127a9 More work on ClassVirtSpecifiers. by Anders Carlsson · 13 years ago
  79. 69a8735 Pass the VirtSpecifiers along to Sema::ActOnCXXMemberDeclarator. by Anders Carlsson · 13 years ago
  80. 7eeb4ec Lazily initialize the 'final' and 'override' contextual keywords as suggested by Doug. by Anders Carlsson · 13 years ago
  81. 9ea416e Parse the optional semicolon after a C++ in-class member function by Douglas Gregor · 13 years ago
  82. dec0984 Fix warnings found by gcc-4.6, from -Wunused-but-set-variable and by Jeffrey Yasskin · 14 years ago
  83. d6c4eb6 Remove dead code. by Anders Carlsson · 14 years ago
  84. b971dbd Change ParseOptionalCXX0XVirtSpecifierSeq to take a VirtSpecifiers struct. by Anders Carlsson · 14 years ago
  85. 1f3b6fd Begin work on supporting "N3206: Override control: Eliminating Attributes", from by Anders Carlsson · 14 years ago
  86. cbb6748 Renamed CXXBaseOrMemberInitializer to CXXCtorInitializer. This is both shorter, by Sean Hunt · 14 years ago
  87. 3fb9e4b Implement pack expansion of base initializers, so that we can by Douglas Gregor · 14 years ago
  88. f90b27a Implement pack expansions whose pattern is a base-specifier. by Douglas Gregor · 14 years ago
  89. 7f040a9 Refactor how we collect attributes during parsing, and add slots for attributes by John McCall · 14 years ago
  90. a04426c Extend the parser to support pack expansions within exception by Douglas Gregor · 14 years ago
  91. 075f8f1 Added ParenType type node. by Abramo Bagnara · 14 years ago
  92. a88cefd Added struct/class syntactic info for c++0x scoped enum. by Abramo Bagnara · 14 years ago
  93. 45ab4b5 In some situations, TemplateArgumentLoc wasn't setting TypeSourceLoc (see by Craig Silverstein · 14 years ago
  94. 8113ecf Region-allocate all AttributeList objects from a factory object instead of manually managing them by Ted Kremenek · 14 years ago
  95. 78b8105 Diagnose attempst to template using declarations and using directives. by John McCall · 14 years ago
  96. 7d64271 tidy up by Chris Lattner · 14 years ago
  97. 729ad83 fix PR8380, a crash on invalid due to an illogical DeclSpec SourceRange being constructed. by Chris Lattner · 14 years ago
  98. a25c408 Tag references shouldn't ever get template parameter lists. by John McCall · 14 years ago
  99. 9a34edb Redirect templated friend class decls to a new Sema callback and by John McCall · 14 years ago
  100. d54eb44 Parse default arguments within member functions in source order, from by Douglas Gregor · 14 years ago