1. caddba0 Recognize (and check) pointer-to-member template arguments that are by Douglas Gregor · 15 years ago
  2. fb898e1 When comparing template parameter lists, distinguish between three cases: by Douglas Gregor · 15 years ago
  3. 7ca8b06 writable atomic property's setter/getter must be in 'lock' step of by Fariborz Jahanian · 15 years ago
  4. f35f828 Improve diagnostics when a default template argument does not match by Douglas Gregor · 15 years ago
  5. d9e1530 Move handling of template parameter packs out of the by Douglas Gregor · 15 years ago
  6. e752641 Refactoring of template-argument checking code to reduce nesting, by Douglas Gregor · 15 years ago
  7. 9148c3f Before checking a template template argument against its corresponding by Douglas Gregor · 15 years ago
  8. 788cd06 Introduce a new representation for template template by Douglas Gregor · 15 years ago
  9. 314b97f Improve parsing of template arguments to lay the foundation for by Douglas Gregor · 15 years ago
  10. d288baf Further change in a comment. by Fariborz Jahanian · 15 years ago
  11. 9aea0ce Removed a FIXME on nested type specifier warning. by Fariborz Jahanian · 15 years ago
  12. 3f17a37 Fix build after r86579. by Benjamin Kramer · 15 years ago
  13. 0f8716b Improve instantiation of default template arguments for nested by Douglas Gregor · 15 years ago
  14. 49c16da Unify the codepaths used to verify base and member initializers for explicitly by Eli Friedman · 15 years ago
  15. c9132b6 Test commit - minor terminology change to my recent patch suggested by John McCall by Sean Hunt · 15 years ago
  16. 36a862f Patch to gives an error that at least points users in the direction of the error, rather by Fariborz Jahanian · 15 years ago
  17. c4df6d2 Add basic code completion support for ObjC messages. by Steve Naroff · 15 years ago
  18. 5dbad3d Improve the -Wsign-compare heuristics: by John McCall · 15 years ago
  19. 393896f Fixed two places where we needed to force completion of a type by Douglas Gregor · 15 years ago
  20. b13c87f Implement the conditional-operator part of -Wsign-compare. Turn by John McCall · 15 years ago
  21. 6ca7cfb When instantiating a UnaryOperator, allow the resulting expression to by Douglas Gregor · 15 years ago
  22. 12c118a Switch parsing of using declarations over to ParseUnqualifiedId. by Douglas Gregor · 15 years ago
  23. 5ab7517 Preserve type source information in sizeof/alignof expressions, and pass it by John McCall · 15 years ago
  24. 54abf7d Change our basic strategy for avoiding deprecation warnings when the decl use by John McCall · 15 years ago
  25. 014e88d Parsing and semantic analysis for template-ids that name overloaded by Douglas Gregor · 15 years ago
  26. 2d1c214 Replace the code that parses member access expressions after "." or by Douglas Gregor · 15 years ago
  27. 02a24ee Use ParseUnqualifiedId when parsing id-expressions. This eliminates by Douglas Gregor · 15 years ago
  28. 550d9b2 Implement "incremental" template instantiation for non-type template by Douglas Gregor · 15 years ago
  29. f322ed6 Properly instantiate usage of overloaded operator []. Fixes PR5345. by Sebastian Redl · 15 years ago
  30. 0ebb6d3 Make sure to call CompleteConstructorCall for bases and members that are initialized implicitly in constructors so that default arguments etc are set correctly. Fixes PR5283. by Anders Carlsson · 15 years ago
  31. 833ca99 Track source information for template arguments and template specialization by John McCall · 15 years ago
  32. ed9c0f9 Implement support for semantic checking and template instantiation of by Douglas Gregor · 15 years ago
  33. c0fcce4 Removed an unnecessary arguement passed to InitializeVarWithConstructor by Fariborz Jahanian · 15 years ago
  34. 0d03514 An explicit instantiation definition only instantiations those class by Douglas Gregor · 15 years ago
  35. 972e6ce Only set the point of instantiation for an implicit or explicit by Douglas Gregor · 15 years ago
  36. 1d7e767 Refine noreturn handling. Fixes -Wmissing-noreturn so that it doesn't by Mike Stump · 15 years ago
  37. 5233826 Implement rdar://6756623 - use of deprecated type in deprecated typedef should not warn by Chris Lattner · 15 years ago
  38. 8ce35b0 Remove the Skip parameter from GetTypeForDeclarator and dependents. Take the opportunity to improve an error message and fix PR4498. by Sebastian Redl · 15 years ago
  39. 1564e39 change ConvertDeclSpecToType to be a static function in SemaType.cpp by Chris Lattner · 15 years ago
  40. ba6a9bd Preserve type source information in TypedefDecls. Preserve it across by John McCall · 15 years ago
  41. 644be85 Apply the special enum restrictions from [over.match.oper]p3b2 in argument-dependent lookup too. This fixes PR5244. by Sebastian Redl · 15 years ago
  42. 54e14c4 When building types from declarators, instead of building two types (one for by John McCall · 15 years ago
  43. f17bb74 When building and instantiating a template-id reference expression, such as by Douglas Gregor · 15 years ago
  44. e961afb Refactor our handling of implicit member reference expressions to get most of the logic out of BuildDeclarationNameExpr by Douglas Gregor · 15 years ago
  45. 573d9c3 Don't (directly) call RequireCompleteType with an invalid source location. by Douglas Gregor · 15 years ago
  46. 96ad533 Change FixOverloadedFunctionReference to return a (possibly new) expression. Substitute TemplateIdRefExprs with DeclRefExprs. Doug, plz review :) by Anders Carlsson · 15 years ago
  47. cd7ba1c Clone Sema::SubstType for DeclaratorInfos. by John McCall · 15 years ago
  48. 73c39ab Remove default argument for ImpCastExprToType. Add appropriate argument by Eli Friedman · 15 years ago
  49. dd62b15 Parse a simple-template-id following a '~' when calling a destructor, e.g., by Douglas Gregor · 15 years ago
  50. 759986e Don't add implicit casts of explicit address-taking of overloaded functions. by Sebastian Redl · 15 years ago
  51. 93034ca Implement derived-to-base AST/code gen. There is a by Fariborz Jahanian · 15 years ago
  52. 16a8904 Add CK_VectorSplat and use it for casting non-pointer scalars to ExtVectors. by Anders Carlsson · 15 years ago
  53. c351632 Make CheckVectorCast return a CastKind. Reduce nesting of if statements in CheckCastTypes. by Anders Carlsson · 15 years ago
  54. e2d3a3d Diagnose explicit instantiations of function templates and member by Douglas Gregor · 15 years ago
  55. 37c38ec Have the exception specification checkers take partial diagnostics. Use this to merge two diagnostics. by Sebastian Redl · 15 years ago
  56. a786fdb Improve diagnostics when the parser encounters a declarator with an by Douglas Gregor · 15 years ago
  57. 3f09327 Unify our diagnostic printing for errors of the form, "we didn't like by Douglas Gregor · 15 years ago
  58. fd056bc When explicitly specializing a member that is a template, mark the by Douglas Gregor · 15 years ago
  59. 5a881bb Implement -Wparentheses: warn about using assignments in contexts that require by John McCall · 15 years ago
  60. 2ebe7eb Handle built-in unary operators when reporting ambiguities. by Fariborz Jahanian · 15 years ago
  61. dced226 Test exception spec compatibility on return type and parameters. by Sebastian Redl · 15 years ago
  62. 2c7588f Implement the core checking for compatible exception specifications in assignment and initialization. by Sebastian Redl · 15 years ago
  63. 6e24726 Qualified lookup through using declarations. Diagnose a new type of ambiguity. by John McCall · 15 years ago
  64. 8c8d919 Add CheckCallReturnType and start using it for regular call expressions. This will improve error messages. For by Anders Carlsson · 15 years ago
  65. 3135df5 Dead Code Elimination by Douglas Gregor · 15 years ago
  66. f36e02d Refactor the LookupResult API to simplify most common operations. Require users to by John McCall · 15 years ago
  67. 16a5eac Improve on reporting ambiguity involving built-in candidates. by Fariborz Jahanian · 15 years ago
  68. ece8e71 Add code completion support for ObjC property declarations/attributes. by Steve Naroff · 15 years ago
  69. 251b4ff For instantiations of static data members of class templates, keep by Douglas Gregor · 15 years ago
  70. 1fef4e6 Type checking for specializations of member functions of class by Douglas Gregor · 15 years ago
  71. d5cb876 Refactor checking of the scope of explicit template specialization by Douglas Gregor · 15 years ago
  72. a8f32e0 Refactor the code that walks a C++ inheritance hierarchy, searching by Douglas Gregor · 15 years ago
  73. d789d3d - Remove Sema::FindMethodInNestedImplementations(). by Steve Naroff · 15 years ago
  74. 249cead Patch to implement static casting which requires one by Fariborz Jahanian · 15 years ago
  75. 7605618 13.1-p3 Overloadable declarations by Fariborz Jahanian · 15 years ago
  76. f352bdd Introduce ObjCProtocolListLoc for keeping source location information for protocol references. by Argyrios Kyrtzidis · 15 years ago
  77. b740023 Define and use a helper method to call a type conversion function. by Fariborz Jahanian · 15 years ago
  78. 2531c2d Teach Sema::isDeclInScope to handle overload sets constructed from by Douglas Gregor · 15 years ago
  79. 0b60d9e Use explicitly-specified template argument lists to help naming by Douglas Gregor · 15 years ago
  80. d5a423b WIP implementation of explicit instantiation of function templates, by Douglas Gregor · 15 years ago
  81. ce94049 Fix checking for a null pointer constant when the expression itself is by Douglas Gregor · 15 years ago
  82. 7dfd0fb When entering the scope of a declarator, make sure that the scope is by Douglas Gregor · 15 years ago
  83. b9aa6b2 WIP implementation of explicit function template specialization. This by Douglas Gregor · 15 years ago
  84. 739d828 Improve diagnostic location information when checking the initialization of a reference by Douglas Gregor · 15 years ago
  85. 51bebc8 This patch addresses a few issues related to 8.5.3 [dcl.init.ref] by Fariborz Jahanian · 15 years ago
  86. 21fb98e implement support for __builtin_eh_return_data_regno on x86-32 and x86-64. by Chris Lattner · 15 years ago
  87. 17c7a5d Code refactoring and cleanup. by Fariborz Jahanian · 15 years ago
  88. 9c6a0e9 Implement code completion within a function call, triggered after the by Douglas Gregor · 15 years ago
  89. 791215b Code completion for ordinary names when we're starting a declaration, expression, or statement by Douglas Gregor · 15 years ago
  90. 3e1005f Code completion for "case" statements within a switch on an expression by Douglas Gregor · 15 years ago
  91. 86d9a52 Refactor and simplify the CodeCompleteConsumer, so that all of the by Douglas Gregor · 15 years ago
  92. 63f07c5 Make the construction of the code-completion string for a function by Douglas Gregor · 15 years ago
  93. ed8d322 C++ code completion after the "operator" keyword. Provide overloaded by Douglas Gregor · 15 years ago
  94. 49f40bd Introduce four new code-completion hooks for C++: by Douglas Gregor · 15 years ago
  95. 374929f Implement code completion for tags, e.g., code completion after "enum" by Douglas Gregor · 15 years ago
  96. 81b747b Initial implementation of a code-completion interface in Clang. In by Douglas Gregor · 15 years ago
  97. 83913e3 When creating function types, remove any top-level CVR qualifications in the function type argument types. by Anders Carlsson · 15 years ago
  98. dd4a3b0 Improved representation and support for friend class templates. Angst about same. by John McCall · 15 years ago
  99. e95b409 Teach Sema::FindInstantiatedDecl to find instantiated RecordDecls even by Douglas Gregor · 15 years ago
  100. 7adb10f When implicitly declaring operators new, new[], delete, and delete[], by Douglas Gregor · 15 years ago