1. 9a4db03 PR13811: Add a FunctionParmPackExpr node to handle references to function by Richard Smith · 12 years ago
  2. 3fe198b Rip out remnants of move semantic emulation and smart pointers in Sema. by Benjamin Kramer · 12 years ago
  3. cbf97c5 Don't form a null reference when checking for validity of an anonymous by Richard Smith · 12 years ago
  4. 1f2e1a9 Check access to friend declarations. There's a number of different by John McCall · 12 years ago
  5. b9d0b76 Final piece of core issue 1330: delay computing the exception specification of by Richard Smith · 12 years ago
  6. 612409e PR12057: Allow variadic template pack expansions to cross lambda boundaries. by Richard Smith · 12 years ago
  7. 7e54fb5 PR13365: Fix code which was trying to treat an array of DeducedTemplateArgument by Richard Smith · 12 years ago
  8. e3f470a Stop instantiating a class if we hit a static_assert failure. Also, if the by Richard Smith · 12 years ago
  9. 6098381 PR13136: by Richard Smith · 12 years ago
  10. ab91ef1 PR9793: Treat substitution as an instantiation step for the purpose of the by Richard Smith · 12 years ago
  11. 8a50fe0 Be more eager about setting the 'Invalid' bit on an invalid class by Douglas Gregor · 12 years ago
  12. b4e8008 Give L__FUNCTION__ the right type in templates. PR13206. by Nico Weber · 12 years ago
  13. 1dfbd92 Still more Doxygen documentation fixes: by James Dennett · 12 years ago
  14. ca52330 PR13064: Store whether an in-class initializer uses direct or copy by Richard Smith · 12 years ago
  15. 268efba CXXThisScopeRAII objects aren't free, don't compute one if it's unused. by Benjamin Kramer · 12 years ago
  16. 5729672 PR12710 - broken default argument handling for templates. by David Blaikie · 12 years ago
  17. c1c0725 Fix PR12378: provide conversion warnings on default args of function templates by David Blaikie · 12 years ago
  18. a43ea64 PR12647: An alias template instantiation which occurs in a SFINAE context is by Richard Smith · 12 years ago
  19. e6975e9 Implement DR1330 in C++11 mode, to support libstdc++4.7 which uses it. by Richard Smith · 13 years ago
  20. cefc3af Implement C++11 [expr.prim.general]p3, which permits the use of 'this' by Douglas Gregor · 13 years ago
  21. d2008e2 Implement support for null non-type template arguments for non-type by Douglas Gregor · 13 years ago
  22. 3343fad When defining a forward-declared enum, don't try to attach the definition to by Richard Smith · 13 years ago
  23. 1af83c4 Support for definitions of member enumerations of class templates outside the by Richard Smith · 13 years ago
  24. f1c66b4 Instantiating a class template should not instantiate the definition of any by Richard Smith · 13 years ago
  25. 4e4d084 Unify naming of LangOptions variable/get function across the Clang stack (Lex to AST). by David Blaikie · 13 years ago
  26. dfca6f5 Introduce support for template instantiation of lambda by Douglas Gregor · 13 years ago
  27. 5b9cc5d Represent C++ direct initializers as ParenListExprs before semantic analysis by Sebastian Redl · 13 years ago
  28. 734bd6e For class template implicit instantiation, also update its location to point by Argyrios Kyrtzidis · 13 years ago
  29. 5bbc385 Move instantiateTemplateAttribute into the sema namespace, make helpers static. by Benjamin Kramer · 13 years ago
  30. d1bb4ae When we're substituting into a function parameter pack and expect to by Douglas Gregor · 13 years ago
  31. c0536c8 Fix PR11848: decree that an alias template contains an unexpanded parameter pack by Richard Smith · 13 years ago
  32. 23323e0 Delayed template instantiation of late-parsed attributes. by DeLesley Hutchins · 13 years ago
  33. 7530c03 Remove unreachable code in Clang. (replace with llvm_unreachable where appropriate or when GCC requires it) by David Blaikie · 13 years ago
  34. ef96ee0 De-virtualize getPreviousDecl() and getMostRecentDecl() when we know by Douglas Gregor · 13 years ago
  35. c7feca0 Fix a crash on invalid, http://llvm.org/pr11599 by Nico Weber · 13 years ago
  36. e994624 Fixed implicit instantiations source range. by Abramo Bagnara · 13 years ago
  37. 09d8212 Fixed source range for template implicit instantiations. by Abramo Bagnara · 13 years ago
  38. 8987b23 Only print _Bool as 'bool' when 'bool' is defined as an object-like by Douglas Gregor · 13 years ago
  39. 30c4240 When 'bool' is not a built-in type but is defined as a macro, print by Douglas Gregor · 13 years ago
  40. 77b6de0 ArrayRef-ifying the fields passed to Sema::ActOnFields by David Blaikie · 13 years ago
  41. a71f9d0 ArrayRef-ifying the UnexpandedParameterPacks passed to Sema::CheckParameterPacksForExpansion by David Blaikie · 13 years ago
  42. af0f4d0 Implement function template specialization at class scope extension in Microsoft mode. A new AST node is introduced: ClassScopeFunctionSpecialization. This node holds a FunctionDecl that is not yet specialized; then during the class template instantiation the ClassScopeFunctionSpecialization will spawn the actual function specialization. by Francois Pichet · 13 years ago
  43. 5f9e272 remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.h imports by Chris Lattner · 13 years ago
  44. 0ff6f8f Replace r134583's fix for PR10290 with one which also works for non-value-dependent cases. by Richard Smith · 13 years ago
  45. 91a5755 Create a new expression node, SubstNonTypeTemplateParmExpr, by John McCall · 13 years ago
  46. e4f22ad In an in-class initialization, defer checks for value-dependent initialization by Nick Lewycky · 13 years ago
  47. 561f812 Introduce the notion of instantiation dependence into Clang's AST. A by Douglas Gregor · 13 years ago
  48. 1460604 Preserve that a TemplateName was arrived at by substituting by John McCall · 13 years ago
  49. 383041d When performing substitution of default template template parameters by Douglas Gregor · 13 years ago
  50. 7a614d8 Implement support for C++11 in-class initialization of non-static data members. by Richard Smith · 13 years ago
  51. bbf34c0 Made changes to how 'struct'/'class' mismatches are handled in -Wmismatched-tags. by Richard Trieu · 13 years ago
  52. 93104c1 Add an assertion to tell us when we're going off the deep end trying by Douglas Gregor · 13 years ago
  53. c056c17 When determining whether we need to instantiate a function type, by Douglas Gregor · 13 years ago
  54. 10620eb Modify some deleted function methods to better reflect reality: by Sean Hunt · 13 years ago
  55. 3e4c6c4 Implement support for C++0x alias templates. by Richard Smith · 13 years ago
  56. fb44de9 Store a parameter index and function prototype depth in every by John McCall · 13 years ago
  57. 4fb86f8 Re-applies the patch first applied way back in r106099, with by Chandler Carruth · 13 years ago
  58. d46a112 Diagnose attempts to implicitly instantiate a template before it is by John McCall · 13 years ago
  59. ff676cb Fixed source range for all DeclaratorDecl's. by Abramo Bagnara · 14 years ago
  60. 5875038 When substituting in for a template name, do not produce a qualified by Douglas Gregor · 14 years ago
  61. c494f77 When determining template instantiation arguments within a function by Douglas Gregor · 14 years ago
  62. 9151c11 Kill off TreeTransform::TransformNestedNameSpecifier() in favor of the by Douglas Gregor · 14 years ago
  63. 1d752d7 Kill off the TreeTransform::TransformTemplateName overload that has by Douglas Gregor · 14 years ago
  64. fd4ffeb Start migrating TreeTransform's TransformTemplateName over to version by Douglas Gregor · 14 years ago
  65. 406f98f When we're substituting into a parameter-type-list nested inside the pattern by Douglas Gregor · 14 years ago
  66. 9e87687 Reinstate the introduction of source-location information for by Douglas Gregor · 14 years ago
  67. 2786864 Revert r126748, my second attempt at nested-name-specifier source by Douglas Gregor · 14 years ago
  68. be38c5f Reinstate r126737, extending the generation of type-source location by Douglas Gregor · 14 years ago
  69. 44cd9f9 Revert r126737, the most recent nested-name-specifier location change, for buildbot breakage. by Douglas Gregor · 14 years ago
  70. 239cbb0 Push nested-name-specifier source location information into elaborated by Douglas Gregor · 14 years ago
  71. c22b5ff Use NestedNameSpecifierLoc within out-of-line variables, function, and by Douglas Gregor · 14 years ago
  72. 57ad378 Step #2/N of __label__ support: keep pushing LabelDecl forward, by Chris Lattner · 14 years ago
  73. d8e5499 Inline LocalInstantiationScope::getInstantiationOf into its one by Chris Lattner · 14 years ago
  74. a70062f remove some defensive code: LocalInstantiationScope::getInstantiationOf by Chris Lattner · 14 years ago
  75. 1eee5dc Teach the evaluation of the __is_convertible_to trait to translate by Douglas Gregor · 14 years ago
  76. cb88a1f Use attributes for all the override control specifiers. by Anders Carlsson · 14 years ago
  77. 7028088 Mark classes final and/or explicit during class template instantiation. by Anders Carlsson · 14 years ago
  78. 6952f1e Implement support for non-type template parameter packs whose type is by Douglas Gregor · 14 years ago
  79. f4c7371 Change QualType::getTypePtr() to return a const pointer, then change a by John McCall · 14 years ago
  80. 1aee05d Introduce a new kind of TemplateName that captures a substituted by Douglas Gregor · 14 years ago
  81. c7793c7 Introduce a new expression kind, SubstNonTypeTemplateParmPackExpr, by Douglas Gregor · 14 years ago
  82. 2be29f4 Teach template template argument pack expansions to keep track of the by Douglas Gregor · 14 years ago
  83. 6a24bfd Handle substitutions into function parameter packs whose patterns by Douglas Gregor · 14 years ago
  84. cded4f6 Keep track of the number of expansions to be produced from a type pack by Douglas Gregor · 14 years ago
  85. c3069d6 Start implementing support for substitution into pack expansions that by Douglas Gregor · 14 years ago
  86. d373119 Work-in-progress implementation of C++0x [temp.arg.explicit]p9, which by Douglas Gregor · 14 years ago
  87. 91fc73e When instantiating the arguments to an initializer, use the by Douglas Gregor · 14 years ago
  88. 12c9c00 Implement substitution of a function parameter pack for its set of by Douglas Gregor · 14 years ago
  89. a009b59 Factor out the template transformation of a sequence of function by Douglas Gregor · 14 years ago
  90. 603cfb4 Initial implementation of function parameter packs. This implementation allows: by Douglas Gregor · 14 years ago
  91. 7b1cf30 hasInit() -> hasDefaultArg() by Douglas Gregor · 14 years ago
  92. 61c4d28 Implement support for template template parameter packs, e.g., by Douglas Gregor · 14 years ago
  93. 54c53cc Improve our handling of non-type template parameters in partial by Douglas Gregor · 14 years ago
  94. 3fb9e4b Implement pack expansion of base initializers, so that we can by Douglas Gregor · 14 years ago
  95. f90b27a Implement pack expansions whose pattern is a base-specifier. by Douglas Gregor · 14 years ago
  96. 56bc983 When instantiating a non-type template parameter pack, be sure to by Douglas Gregor · 14 years ago
  97. e02e262 Implement template argument deduction for pack expansions whose by Douglas Gregor · 14 years ago
  98. ebb1c56 When searching for the instantiation of a locally-scoped tag by Douglas Gregor · 14 years ago
  99. b99268b Implement instantiation of pack expansions whose pattern is a type-id by Douglas Gregor · 14 years ago
  100. 984a58b Handle instantiation of template type parameter packs that occur as by Douglas Gregor · 14 years ago