1. 610068c Add initial prototype for implementation of by Ted Kremenek · 15 years ago
  2. c7793c7 Introduce a new expression kind, SubstNonTypeTemplateParmPackExpr, by Douglas Gregor · 15 years ago
  3. 2be29f4 Teach template template argument pack expansions to keep track of the by Douglas Gregor · 15 years ago
  4. 6a24bfd Handle substitutions into function parameter packs whose patterns by Douglas Gregor · 15 years ago
  5. 689ebfc The variable 'ReusedDecl' is written but never read. by Ted Kremenek · 15 years ago
  6. fe62b06 The variable 'isTemplateSpecialization' is no longer by Ted Kremenek · 15 years ago
  7. e6df5f6 Remove unused store to variable 'Name'. Found by clang static analyzer. by Ted Kremenek · 15 years ago
  8. 67fd125 Teach PackExpansionExpr to keep track of the number of pack expansions by Douglas Gregor · 15 years ago
  9. 07a77b4 When we're instantiating a direct variable initializer that has a pack by Douglas Gregor · 15 years ago
  10. cded4f6 Keep track of the number of expansions to be produced from a type pack by Douglas Gregor · 15 years ago
  11. 0bc15d9 Fix a few warnings stemming from my inability to properly fill out by Douglas Gregor · 15 years ago
  12. c3069d6 Start implementing support for substitution into pack expansions that by Douglas Gregor · 15 years ago
  13. c421f54 Only apply the parameter pack matching of C++0x [temp.arg.template]p3 by Douglas Gregor · 15 years ago
  14. 4f1d282 Allow us to transform pack expansion expressions. by Douglas Gregor · 15 years ago
  15. a034782 Implement C++0x [temp.arg.template]p3, which allows slightly fuzzy by Douglas Gregor · 15 years ago
  16. ab7ddf0 Refactor and simplify Sema::TemplateParameterListsAreEqual. We had a by Douglas Gregor · 15 years ago
  17. 1d5d0b9 Add the location of the right parenthesis of a C++ named cast by Douglas Gregor · 15 years ago
  18. 2fc1bb7 Teach TreeTransform how to transform a pack expansion type into by Douglas Gregor · 15 years ago
  19. ae278a3 Slight bugfix to the attribute-distribution logic for GC attributes. by John McCall · 15 years ago
  20. 2432320 Add a comment for r123231. by Francois Pichet · 15 years ago
  21. 203e6a3 Add TemplateArgument::CreatePackCopy() to create a new parameter pack by Douglas Gregor · 15 years ago
  22. 77d6bb9 Implement partial ordering of class template partial specializations by Douglas Gregor · 15 years ago
  23. 5c7bf42 Implement C++ [temp.func.order]p5 more directly, by passing down the by Douglas Gregor · 15 years ago
  24. 2b57aef Added warning about invalid register specification for local variables. by Abramo Bagnara · 15 years ago
  25. a15a5ee In Microsoft mode, force 64 bit hex integer constants to signed type if the LL or i64 suffix is used. This MSVC behavior. by Francois Pichet · 15 years ago
  26. 483dd2f Ensure that the result type of an Objective-C class message send is by Douglas Gregor · 15 years ago
  27. 21371ea When mapping from a function parameter pack to the set of function by Douglas Gregor · 15 years ago
  28. 7d5c0c1 Implement the last bullet of [temp.deduct.type]p5 and part of the last by Douglas Gregor · 15 years ago
  29. 3cae5c9 Implement more of C++0x [temp.arg.explicit]p9, allowing extension of by Douglas Gregor · 15 years ago
  30. 0216f81 Repent for my copy-and-paste sins, factoring out the code that forms by Douglas Gregor · 15 years ago
  31. 5429385 Factor out the code to set up template argument deduction for a set of by Douglas Gregor · 15 years ago
  32. d373119 Work-in-progress implementation of C++0x [temp.arg.explicit]p9, which by Douglas Gregor · 15 years ago
  33. cbb6748 Renamed CXXBaseOrMemberInitializer to CXXCtorInitializer. This is both shorter, by Sean Hunt · 15 years ago
  34. 97fcc49 Check for delegating constructors and (currently) return an error about them. by Sean Hunt · 15 years ago
  35. eeef924 Remove a kludge from analysis based warnings that used to detect by Chandler Carruth · 15 years ago
  36. 65197b4 Add semantic checking that the "thousands grouping" by Ted Kremenek · 15 years ago
  37. 91fc73e When instantiating the arguments to an initializer, use the by Douglas Gregor · 15 years ago
  38. bd5f9f7 Fix a valgrind error when transforming function prototypes with by Douglas Gregor · 15 years ago
  39. 12c9c00 Implement substitution of a function parameter pack for its set of by Douglas Gregor · 15 years ago
  40. a009b59 Factor out the template transformation of a sequence of function by Douglas Gregor · 15 years ago
  41. f5c65ff Implement template argument deduction from a call to a function by Douglas Gregor · 15 years ago
  42. 9d156a7 Introduce an AttributedType, but don't actually use it anywhere yet. by John McCall · 15 years ago
  43. 0bbacf8 Fast-path an arity check when performing template argument deduction that compares two parameter-type-lists. No functionality change. by Douglas Gregor · 15 years ago
  44. c8a16fb Eliminate an unnecessary dance where we tried to cope with the lack of by Douglas Gregor · 15 years ago
  45. 603cfb4 Initial implementation of function parameter packs. This implementation allows: by Douglas Gregor · 15 years ago
  46. 2b77cb8 Don't warn on missing 'copy' attribute on a 'block' by Fariborz Jahanian · 15 years ago
  47. 7b1cf30 hasInit() -> hasDefaultArg() by Douglas Gregor · 15 years ago
  48. 1fe85ea Add Decl::isParameterPack(), which covers both function and template by Douglas Gregor · 15 years ago
  49. 135ffa7 Propagate the "deduced from array bound" bit when comparing deduced by Douglas Gregor · 15 years ago
  50. d53e16a When we're converting deduced template arguments to the type of the by Douglas Gregor · 15 years ago
  51. b1fa3dc Use the proper enum as parameter, instead of unsigned. No functionality change. by Argyrios Kyrtzidis · 15 years ago
  52. 1d65ebb Eliminate two "unsupported" errors relating to variadic templates: one by Douglas Gregor · 15 years ago
  53. a7fc901 Replace the representation of template template argument pack by Douglas Gregor · 15 years ago
  54. ba68eca Add semantic analysis for the creation of and an AST representation by Douglas Gregor · 15 years ago
  55. b49e415 Update C++ [temp.param]p11 citation to reflect the changes in C++0x. No functionality change by Douglas Gregor · 15 years ago
  56. 1ed6476 Implement C++0x [temp.param]p11 for non-type and template template by Douglas Gregor · 15 years ago
  57. f457c1a Implement proper parameter pack matching for non-type template by Douglas Gregor · 15 years ago
  58. 61c4d28 Implement support for template template parameter packs, e.g., by Douglas Gregor · 15 years ago
  59. 07fa2fa Fix the -Asserts build. by John McCall · 15 years ago
  60. 711c52b Refactor the application of type attributes so that attributes from by John McCall · 15 years ago
  61. 2fdc5e8 Many of the built-in operator candidates introduced into overload by Douglas Gregor · 15 years ago
  62. a8311be Eliminate some completely useless code that attempted to perform some by Douglas Gregor · 15 years ago
  63. 54c53cc Improve our handling of non-type template parameters in partial by Douglas Gregor · 15 years ago
  64. 5471cbc Remove an unnecessary FIXME for variadic templates by Douglas Gregor · 15 years ago
  65. 033a3ca Minor cleanups for template argument deduction in the presence of by Douglas Gregor · 15 years ago
  66. 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
  67. ee8aff0 Implement the sizeof...(pack) expression to compute the length of a by Douglas Gregor · 15 years ago
  68. bb03f5d Prefer getAs<ComplexType> rather than cast<ComplexType> on canonical type. Suggestion by Douglas Gregor! by Abramo Bagnara · 15 years ago
  69. 9f7a6ee Implement -Wself-assign, which warns on code such as: by Chandler Carruth · 15 years ago
  70. b2b5cc0 Enhance the diagnostic for negative array sizes to include the by Chandler Carruth · 15 years ago
  71. 3fb9e4b Implement pack expansion of base initializers, so that we can by Douglas Gregor · 15 years ago
  72. f90b27a Implement pack expansions whose pattern is a base-specifier. by Douglas Gregor · 15 years ago
  73. 0fe5397 When in code-completion, skip obj-c method bodies for speed up. by Argyrios Kyrtzidis · 15 years ago
  74. 7a21fd4 Properly rebuild pack expansions whose pattern is a non-type template by Douglas Gregor · 15 years ago
  75. bacb949 Unwrap template argument packs when checking the template arguments of by Douglas Gregor · 15 years ago
  76. 925910d Diagnose the presence of unexpanded parameter packs within class by Douglas Gregor · 15 years ago
  77. dcaa1ca Implement support for pack expansions in initializer lists and expression lists. by Douglas Gregor · 15 years ago
  78. ef9d09c Fix PR8841 by checking for both semantic and lecical dependent by Chandler Carruth · 15 years ago
  79. aa165f8 Refactor the tree transform's many loops over sets of expressions by Douglas Gregor · 15 years ago
  80. e776f88 Guard lazy synthesis of provisional ivars under the new by Fariborz Jahanian · 15 years ago
  81. be230c3 Implement support for pack expansions whose pattern is a non-type by Douglas Gregor · 15 years ago
  82. 6b9109e When we attempt to create a built-in that involves a library type we by Douglas Gregor · 15 years ago
  83. a96022c Funciton -> Function by Peter Collingbourne · 15 years ago
  84. 743b82b Unkown -> Unknown by Peter Collingbourne · 15 years ago
  85. 8595a0c Remove obsolete comments. by Francois Pichet · 15 years ago
  86. baf8695 Produce a better error message for invalid register names. by Rafael Espindola · 15 years ago
  87. f57258b MSVC doesn't require an accessible copy-constructor when binding a temporary class object to a const-reference. by Francois Pichet · 15 years ago
  88. 4b0766f Canonicalize types before possible cast. by Abramo Bagnara · 15 years ago
  89. 6915c52 More __uuidof validation: by Francois Pichet · 15 years ago
  90. 7f040a9 Refactor how we collect attributes during parsing, and add slots for attributes by John McCall · 15 years ago
  91. 6e4e17d Fix a thinko in a helper routine for template argument deduction that by Douglas Gregor · 15 years ago
  92. 8537473 Non-type template parameter packs cannot have default arguments. by Douglas Gregor · 15 years ago
  93. 56bc983 When instantiating a non-type template parameter pack, be sure to by Douglas Gregor · 15 years ago
  94. 10738d3 Add an AST representation for non-type template parameter packs, e.g., by Douglas Gregor · 15 years ago
  95. a8bc8c9 Implement parsing of function parameter packs and non-type template by Douglas Gregor · 15 years ago
  96. c32647d Add -fobjc-default-synthesized-properties flag by Ted Kremenek · 15 years ago
  97. b9c6631 Reimplement the comparison of a class template partial by Douglas Gregor · 15 years ago
  98. ea6c96f Implement the part of C++0x [temp.arg.explicit]p3 that pertains to by Douglas Gregor · 15 years ago
  99. 7b976ec Implement the rest of C++0x [temp.deduct.type]p9, which specifies that by Douglas Gregor · 15 years ago
  100. c6ed729 Change all self assignments X=X to (void)X, so that we can turn on a by Jeffrey Yasskin · 15 years ago