1. ca46d13 Implement deletion of explicitly defaulted default constructors. by Sean Hunt · 13 years ago
  2. a6bff2c Commit some missing changes to the previous patch. by Sean Hunt · 13 years ago
  3. cdee3fe Implement implicit deletion of default constructors. by Sean Hunt · 13 years ago
  4. f961ea5 Re-do R131114 without breaking code. by Sean Hunt · 13 years ago
  5. c840649 Reimplement Sema::MatchTemplateParametersToScopeSpecifier() based on by Douglas Gregor · 13 years ago
  6. 680404e Revert 131114. This fixes PR9884. by Rafael Espindola · 13 years ago
  7. 001cad9 Further implement defaulting constructors. by Sean Hunt · 13 years ago
  8. a780da7 The last of the trivial constructor changes, make CXXSpecialMember by Sean Hunt · 13 years ago
  9. 37b8c9e Clean up trivial default constructors now. by Sean Hunt · 13 years ago
  10. 023df37 Rename "hasTrivialConstructor" to "hasTrivialDefaultConstructor" and by Sean Hunt · 13 years ago
  11. 010157f When checking for a prior declaration of the name of a namespace, skip by Douglas Gregor · 13 years ago
  12. bb85f8e Per Richard's suggestion, rename DefLoc to DefaultLoc where it appears. by Sean Hunt · 13 years ago
  13. 10620eb Modify some deleted function methods to better reflect reality: by Sean Hunt · 13 years ago
  14. fe2695e Do defaulted constructors properly. by Sean Hunt · 13 years ago
  15. 5f802e5 Revert r130912 in order to approach defaulted functions from the other by Sean Hunt · 13 years ago
  16. 3e4c6c4 Implement support for C++0x alias templates. by Richard Smith · 13 years ago
  17. ad7ec12 Implement some framework for defaulted constructors. by Sean Hunt · 13 years ago
  18. c159870 Change cycle detection to be based off of a warning flag. by Sean Hunt · 13 years ago
  19. ebcbe1d there i fixed it by Sean Hunt · 13 years ago
  20. fe57eef Implement a better version of delegating constructor cycle detection. by Sean Hunt · 13 years ago
  21. fa74c23 Ensure that delegating constructor loop detection uses canonical declarations. by Sean Hunt · 13 years ago
  22. b76af9c Ensure that destructors are properly inovked when an exception leaves by Sean Hunt · 13 years ago
  23. 01aacc0 Move the AST modifications to after the cycle detection in by Sean Hunt · 13 years ago
  24. b79bf1d Remove unused variable, but keep function call with side-effect. by Nick Lewycky · 13 years ago
  25. 059ce0d Fully implement delegating constructors! by Sean Hunt · 13 years ago
  26. 58a2cd8 Synthesizing the definition of an implicit member is an AST modification, so notify any mutation listeners of it. This fixes a crasher in chained PCH, where an implicit destructor in a PCH gets a definition in a chained PCH, which is then lost. However, any further use of the destructor would cause its definition to be regenerated in the final file, hiding the bug. by Sebastian Redl · 13 years ago
  27. 7884403 At the end of the translation unit, defining a vtable can introduce by Douglas Gregor · 13 years ago
  28. 8387e2a Add -fdelayed-template-parsing option. Using this option all templated function definitions are parsed at the end of the translation unit only if it is required by an actual instantiation. As such all the symbols of the TU are available during name lookup. by Francois Pichet · 13 years ago
  29. b65abda Don't enter a qualified scope for an invalid decl. by Argyrios Kyrtzidis · 13 years ago
  30. cf320c6 For consistency, change suffix from war_ to warn_ for some Microsoft warnings I introduced lately. by Francois Pichet · 13 years ago
  31. 162e1c1 Support for C++11 (non-template) alias declarations. by Richard Smith · 13 years ago
  32. 8cf9049 Refactor 129240 to merge the old default argument into the new parameter. by Francois Pichet · 13 years ago
  33. 8d051e0 MSVC accepts that default parameters be redefined for member functions by Francois Pichet · 13 years ago
  34. 429bb27 Use ExprResult& instead of Expr *& in Sema by John Wiegley · 13 years ago
  35. 2166948 Make -Wheader-hygiene not complain about USING_NAMESPACE_THROUGH_MACRO in a non-header file. by Nico Weber · 14 years ago
  36. 3334b0b Fix PR9572 and neighboring lurking crashers. by Matt Beaumont-Gay · 14 years ago
  37. 1d71cbf Reduce indentation using early exits and add a couple of comments. No by Chandler Carruth · 14 years ago
  38. 9172aa6 Improve -Wheader-hygiene to warn about using directives inside linkage by Douglas Gregor · 14 years ago
  39. 1d20927 Fixup comments. by Anders Carlsson · 14 years ago
  40. 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 · 14 years ago
  41. 909a70d Apply the nonnull attribute to constructor expressions too. by Nick Lewycky · 14 years ago
  42. 2b32dad Add a new warning for exit-time destructors. by Anders Carlsson · 14 years ago
  43. 80558d2 Fix Objective-C++ exceptions (GNU runtime). by David Chisnall · 14 years ago
  44. d6a49bb Add an opt-in -Wheader-hygiene, which current diagnoses the use of by Douglas Gregor · 14 years ago
  45. 7f0a915 Fixed inconsistency when adding TemplateParameterListsInfo. by Abramo Bagnara · 14 years ago
  46. a085da8 Fix PR9488: 'auto' type substitution can fail (for instance, if it creates a reference-to-void type). Don't crash if it does. by Richard Smith · 14 years ago
  47. 8026f6d Instead of storing an ASTContext* in FunctionProtoTypes with computed noexcept specifiers, unique FunctionProtoTypes with a ContextualFoldingSet, as suggested by John McCall. by Sebastian Redl · 14 years ago
  48. f9c32eb Revert "Disable delegating constructors for 2.9" by Sebastian Redl · 14 years ago
  49. 9d0af36 Disable delegating constructors for 2.9 by Sebastian Redl · 14 years ago
  50. caa35e4 Revert "Disable inherited constructors for 2.9." by Sebastian Redl · 14 years ago
  51. a808c54 Disable inherited constructors for 2.9. by Sebastian Redl · 14 years ago
  52. 60618fa Propagate the new exception information to FunctionProtoType. by Sebastian Redl · 14 years ago
  53. 796aa44 Forgotten part of previous commit. by Abramo Bagnara · 14 years ago
  54. f4e3cfb Add support for the OpenCL vec_step operator, by generalising and by Peter Collingbourne · 14 years ago
  55. c57c17d Avoid do drop outer template parameter lists on the floor. by Abramo Bagnara · 14 years ago
  56. f525160 Teach libclang's token-annotation logic about context-sensitive by Douglas Gregor · 14 years ago
  57. a2026c9 Fixed source range for StaticAssertDecl and LinkageSpecDecl. Fixed source range for declarations using postfix types. by Abramo Bagnara · 14 years ago
  58. acba90f Fixed NamespaceDecl source range. by Abramo Bagnara · 14 years ago
  59. ff676cb Fixed source range for all DeclaratorDecl's. by Abramo Bagnara · 14 years ago
  60. 8b5b409 Reinstate r127112, "Propagate new-style exception spec information to ExtProtoInfo.", this time with the missing header. by Sebastian Redl · 14 years ago
  61. 708a866 Revert r127112, "Propagate new-style exception spec information to ExtProtoInfo." by NAKAMURA Takumi · 14 years ago
  62. 06bfa84 Propagate new-style exception spec information to ExtProtoInfo. by Sebastian Redl · 14 years ago
  63. c54061a Move private structs into anonymous namespaces. by Benjamin Kramer · 14 years ago
  64. 0266aa3 -Woverloaded-virtual shouldn't warn for static functions. Fixes rdar://9083431 & http://llvm.org/PR9396. by Argyrios Kyrtzidis · 14 years ago
  65. 55a9637 Removed left brace location from LinkageSpecDecl. by Abramo Bagnara · 14 years ago
  66. 5f6bcbe Fixed end source location for LinkageSpecDecl. by Abramo Bagnara · 14 years ago
  67. 9e87687 Reinstate the introduction of source-location information for by Douglas Gregor · 14 years ago
  68. 2786864 Revert r126748, my second attempt at nested-name-specifier source by Douglas Gregor · 14 years ago
  69. be38c5f Reinstate r126737, extending the generation of type-source location by Douglas Gregor · 14 years ago
  70. 44cd9f9 Revert r126737, the most recent nested-name-specifier location change, for buildbot breakage. by Douglas Gregor · 14 years ago
  71. 239cbb0 Push nested-name-specifier source location information into elaborated by Douglas Gregor · 14 years ago
  72. 2494dd0 Push nested-name-specifier source location information into by Douglas Gregor · 14 years ago
  73. e29425b Teach Sema::CheckTypenameType to use nested-name-specifiers with by Douglas Gregor · 14 years ago
  74. 40d96a6 Push nested-name-specifier location information into DeclRefExpr and by Douglas Gregor · 14 years ago
  75. 4171766 Implement delegating constructors partially. by Sean Hunt · 14 years ago
  76. 0cfaf6a Push nested-name-specifier source location information into namespace aliases. by Douglas Gregor · 14 years ago
  77. db99241 Push nested-name-specifier source location information into using directives. by Douglas Gregor · 14 years ago
  78. dc35571 Update UsingDecl, UnresolvedUsingTypenameDecl, and by Douglas Gregor · 14 years ago
  79. c34348a Retain complete source-location information for C++ by Douglas Gregor · 14 years ago
  80. 9ddba32 Tweak the CXXScopeSpec API a bit, so that we require the by Douglas Gregor · 14 years ago
  81. 7019186 When checking for abstract types, don't crash when we have a by Douglas Gregor · 14 years ago
  82. 483b9f3 Tweaks to C++0x deduced auto type support: by Richard Smith · 14 years ago
  83. 34b41d9 Implement the C++0x deduced 'auto' feature. by Richard Smith · 14 years ago
  84. f4b793c Teach the virtual-functions-without-virtual-destructor warning to only by Douglas Gregor · 14 years ago
  85. 45f11b7 Fix PR8767, improve diagnostic wording when allocating an object of an by Chandler Carruth · 14 years ago
  86. e996ffd Save a copy expression for non-trivial copy constructions of catch variables. by John McCall · 14 years ago
  87. b25b295 Return a declaration to the parser when creating a field in C++ so that by John McCall · 14 years ago
  88. eee1d54 When parsing an out-of-line member function declaration, we must delay by John McCall · 14 years ago
  89. 7502c1d Give some convenient idiomatic accessors to Stmt::child_range and by John McCall · 14 years ago
  90. 74b47f9 For -Woverloaded-virtual take into account canonical methods. Fixes rdar://8979966 & http://llvm.org/PR9182. by Argyrios Kyrtzidis · 14 years ago
  91. f677ea3 Basic implementation of inherited constructors. Only generates declarations, and probably only works for very basic use cases. by Sebastian Redl · 14 years ago
  92. 1faa89f Re-land r124768, with a fix for PR9130. by Anders Carlsson · 14 years ago
  93. 799ef66 Implement -Woverloaded-virtual. by Argyrios Kyrtzidis · 14 years ago
  94. 01de7a4 Revert 124768. by Rafael Espindola · 14 years ago
  95. aedd9d5 Don't try to mark virtual members referenced for classes where the key function by Anders Carlsson · 14 years ago
  96. 668fdd8 Don't warn for -Wnon-virtual-dtor for dependent classes. by Argyrios Kyrtzidis · 14 years ago
  97. 9641fc8 Only warn for -Wnon-virtual-dtor for public destructors. Thanks to Benjamin Kramer for the hint! by Argyrios Kyrtzidis · 14 years ago
  98. def4e2a Warn if the class has virtual methods but non-virtual destructor. Addresses rdar://8756445. by Argyrios Kyrtzidis · 14 years ago
  99. 6d7f847 When building with optimizations, emit vtables where the key is not in the by Anders Carlsson · 14 years ago
  100. 70a21de Allow elision of invocations of move constructors from temporary objects. by Douglas Gregor · 14 years ago