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