1. abea951 Add -fcxx-exceptions to all tests that use C++ exceptions. by Anders Carlsson · 14 years ago
  2. e41721e Pass -fexceptions to all tests that use try/catch/throw. by Anders Carlsson · 14 years ago
  3. c6daf0b When printing a qualified type, look through a substituted template by Douglas Gregor · 14 years ago
  4. 461bf2e Tweak my fix for PR8748, and update the incorrect PR number in the test case. by Douglas Gregor · 15 years ago
  5. d89d86f Tighten up the semantics of default template arguments, per C++0x by Douglas Gregor · 15 years ago
  6. ee5d21f When a function template's template parameter has a default argument, by Douglas Gregor · 15 years ago
  7. fd1a8fd When we run into a template parameter that should have a default by Douglas Gregor · 15 years ago
  8. e3c7a7c Rvalue references for *this: tentative parsing and template argument deduction. by Douglas Gregor · 15 years ago
  9. 73b3cf6 Implement the rvalue-reference deduction transformation (from T&& -> by Douglas Gregor · 15 years ago
  10. f1602a5 A member function template cannot be virtual. by Anders Carlsson · 15 years ago
  11. b939a19 Implement core issue 1164, which concerns the partial ordering of by Douglas Gregor · 15 years ago
  12. dd0e023 More testing to C++0x [temp.deduct.call]p3 by Douglas Gregor · 15 years ago
  13. 2ad746a Implement the special template argument deduction rule for T&& in a by Douglas Gregor · 15 years ago
  14. dfc331e Explicitly track the number of call arguments provided when performing by Douglas Gregor · 15 years ago
  15. a779d9c Implement basic support for the use of variadic templates and blocks by Douglas Gregor · 15 years ago
  16. 6952f1e Implement support for non-type template parameter packs whose type is by Douglas Gregor · 15 years ago
  17. 9da95e6 Tweak the partial ordering rules for function templates to prefer a by Douglas Gregor · 15 years ago
  18. 1aee05d Introduce a new kind of TemplateName that captures a substituted by Douglas Gregor · 15 years ago
  19. c7793c7 Introduce a new expression kind, SubstNonTypeTemplateParmPackExpr, by Douglas Gregor · 15 years ago
  20. 2be29f4 Teach template template argument pack expansions to keep track of the by Douglas Gregor · 15 years ago
  21. 6a24bfd Handle substitutions into function parameter packs whose patterns by Douglas Gregor · 15 years ago
  22. 67fd125 Teach PackExpansionExpr to keep track of the number of pack expansions by Douglas Gregor · 15 years ago
  23. 07a77b4 When we're instantiating a direct variable initializer that has a pack by Douglas Gregor · 15 years ago
  24. cded4f6 Keep track of the number of expansions to be produced from a type pack by Douglas Gregor · 15 years ago
  25. c3069d6 Start implementing support for substitution into pack expansions that by Douglas Gregor · 15 years ago
  26. c421f54 Only apply the parameter pack matching of C++0x [temp.arg.template]p3 by Douglas Gregor · 15 years ago
  27. 4f1d282 Allow us to transform pack expansion expressions. by Douglas Gregor · 15 years ago
  28. a034782 Implement C++0x [temp.arg.template]p3, which allows slightly fuzzy by Douglas Gregor · 15 years ago
  29. ac6c099 Add some more partial-ordering tests, including one that changes with by Douglas Gregor · 15 years ago
  30. 2fc1bb7 Teach TreeTransform how to transform a pack expansion type into by Douglas Gregor · 15 years ago
  31. 77d6bb9 Implement partial ordering of class template partial specializations by Douglas Gregor · 15 years ago
  32. 4e97586 Add another test for [temp.func.order]p5/[temp.deduct.partial]p11, by Douglas Gregor · 15 years ago
  33. 5c7bf42 Implement C++ [temp.func.order]p5 more directly, by passing down the by Douglas Gregor · 15 years ago
  34. 2e996d9 Add example from C++0x [temp.deduct.type]p21, which already works by Douglas Gregor · 15 years ago
  35. 21371ea When mapping from a function parameter pack to the set of function by Douglas Gregor · 15 years ago
  36. 7d5c0c1 Implement the last bullet of [temp.deduct.type]p5 and part of the last by Douglas Gregor · 15 years ago
  37. 4f3018e Make sure that we parse a '>>' that closes two template argument lists by Douglas Gregor · 15 years ago
  38. 10ffc00 Add testing for unexpanded parameter packs in all of the C++ by Douglas Gregor · 15 years ago
  39. 3cae5c9 Implement more of C++0x [temp.arg.explicit]p9, allowing extension of by Douglas Gregor · 15 years ago
  40. d373119 Work-in-progress implementation of C++0x [temp.arg.explicit]p9, which by Douglas Gregor · 15 years ago
  41. e8bbf98 Variadic templates example: a nearly-complete implementation of a TR1 by Douglas Gregor · 15 years ago
  42. 03414b9 Variadic templates example: a nearly-complete implementation of a TR1 by Douglas Gregor · 15 years ago
  43. 12c9c00 Implement substitution of a function parameter pack for its set of by Douglas Gregor · 15 years ago
  44. a009b59 Factor out the template transformation of a sequence of function by Douglas Gregor · 15 years ago
  45. f5c65ff Implement template argument deduction from a call to a function by Douglas Gregor · 15 years ago
  46. 603cfb4 Initial implementation of function parameter packs. This implementation allows: by Douglas Gregor · 15 years ago
  47. d53e16a When we're converting deduced template arguments to the type of the by Douglas Gregor · 15 years ago
  48. a7fc901 Replace the representation of template template argument pack by Douglas Gregor · 15 years ago
  49. ba68eca Add semantic analysis for the creation of and an AST representation by Douglas Gregor · 15 years ago
  50. 1ed6476 Implement C++0x [temp.param]p11 for non-type and template template by Douglas Gregor · 15 years ago
  51. f457c1a Implement proper parameter pack matching for non-type template by Douglas Gregor · 15 years ago
  52. 61c4d28 Implement support for template template parameter packs, e.g., by Douglas Gregor · 15 years ago
  53. 54c53cc Improve our handling of non-type template parameters in partial by Douglas Gregor · 15 years ago
  54. b9a7d6f Improve the checking of deduced template arguments stored within template argument packs when finishing template argument deduction for a function template by Douglas Gregor · 15 years ago
  55. b95cc97 When creating the injected-class-name for a class template involving a by Douglas Gregor · 15 years ago
  56. 3fb9e4b Implement pack expansion of base initializers, so that we can by Douglas Gregor · 15 years ago
  57. f90b27a Implement pack expansions whose pattern is a base-specifier. by Douglas Gregor · 15 years ago
  58. 69e5aed Add a test that is currently failing by Douglas Gregor · 15 years ago
  59. 7a21fd4 Properly rebuild pack expansions whose pattern is a non-type template by Douglas Gregor · 15 years ago
  60. bacb949 Unwrap template argument packs when checking the template arguments of by Douglas Gregor · 15 years ago
  61. 925910d Diagnose the presence of unexpanded parameter packs within class by Douglas Gregor · 15 years ago
  62. dcaa1ca Implement support for pack expansions in initializer lists and expression lists. by Douglas Gregor · 15 years ago
  63. dee196e Another variadic template metafunction test case: summing values. by Douglas Gregor · 15 years ago
  64. be230c3 Implement support for pack expansions whose pattern is a non-type by Douglas Gregor · 15 years ago
  65. 81063a2 Consolidate template metafunction tests for variadic templates into a single file by Douglas Gregor · 15 years ago
  66. 6e4e17d Fix a thinko in a helper routine for template argument deduction that by Douglas Gregor · 15 years ago
  67. 8537473 Non-type template parameter packs cannot have default arguments. by Douglas Gregor · 15 years ago
  68. 56bc983 When instantiating a non-type template parameter pack, be sure to by Douglas Gregor · 15 years ago
  69. 10738d3 Add an AST representation for non-type template parameter packs, e.g., by Douglas Gregor · 15 years ago
  70. b9c6631 Reimplement the comparison of a class template partial by Douglas Gregor · 15 years ago
  71. b7d09d6 When forming the injected-class-name of a variadic template, the by Douglas Gregor · 15 years ago
  72. ea6c96f Implement the part of C++0x [temp.arg.explicit]p3 that pertains to by Douglas Gregor · 15 years ago
  73. 7b976ec Implement the rest of C++0x [temp.deduct.type]p9, which specifies that by Douglas Gregor · 15 years ago
  74. 0d80abc Unify the consistency checking for deduced template arguments into a by Douglas Gregor · 15 years ago
  75. e02e262 Implement template argument deduction for pack expansions whose by Douglas Gregor · 15 years ago
  76. 0972c86 When performing template argument deduction where the argument is a by Douglas Gregor · 15 years ago
  77. 20a55e2 Implicitly expand argument packs when performing template argument by Douglas Gregor · 15 years ago
  78. 55dc95b Add test for C++ [temp.friend]p8, which bans partial specializations from being friends by Douglas Gregor · 15 years ago
  79. b99268b Implement instantiation of pack expansions whose pattern is a type-id by Douglas Gregor · 15 years ago
  80. a04426c Extend the parser to support pack expansions within exception by Douglas Gregor · 15 years ago
  81. 88f30de Test template instantiation of pack expansions where the parameter pack is in a nested-name-specifier by Douglas Gregor · 15 years ago
  82. dace95b Clean up the printing of template argument packs; previously, we were by Douglas Gregor · 15 years ago
  83. 8491ffe Implement basic support for template instantiation of pack expansions by Douglas Gregor · 15 years ago
  84. 14be16b When checking a template argument list against a template containing by Douglas Gregor · 15 years ago
  85. 7536dd5 Introduce a new type, PackExpansionType, to capture types that are by Douglas Gregor · 15 years ago
  86. a669c53 Add tests checking for unexpanded parameter packs in declarations that by Douglas Gregor · 15 years ago
  87. 781def0 Check for unexpanded parameter packs in non-type template parameter types. by Douglas Gregor · 15 years ago
  88. 6f52675 Check for unexpanded parameter packs in default arguments. by Douglas Gregor · 15 years ago
  89. a31040f Check for unexpanded parameter packs within variable initializers. by Douglas Gregor · 15 years ago
  90. 6ccab97 Check for unexpanded parameter packs in friend declarations. by Douglas Gregor · 15 years ago
  91. 56c0458 Check for unexpanded parameter packs in using declarations. As a by Douglas Gregor · 15 years ago
  92. 0c9e479 Check for unexpanded parameter packs in enumeration types and enumerators. by Douglas Gregor · 15 years ago
  93. 399ad97 Check for unexpanded parameter packs in static assertion expressions. by Douglas Gregor · 15 years ago
  94. e186269 Check for unexpanded parameter packs in various kinds of by Douglas Gregor · 15 years ago
  95. cff163e Test that all of the relevant types properly compute the "contains by Douglas Gregor · 15 years ago
  96. 9ef7589 Introduce a RecursiveASTVisitor subclass that finds all unexpanded by Douglas Gregor · 15 years ago
  97. bebbe0d Variadic templates: extend the Expr class with a bit that specifies by Douglas Gregor · 15 years ago
  98. d093722 Variadic templates: extend Type, NestedNameSpecifier, TemplateName, by Douglas Gregor · 15 years ago
  99. 8d706ec Implement C++0x [temp.func.order]p3 (aka DR532) properly. In by Douglas Gregor · 15 years ago
  100. d65587f Instantiate class member template partial specialization declarations by Douglas Gregor · 15 years ago