1. d89d30f Fix some corner cases in the __is_base_of logic. by John McCall · 14 years ago
  2. b608b98 Give OpaqueValueExpr a source location, because its source location by Douglas Gregor · 14 years ago
  3. 70a21de Allow elision of invocations of move constructors from temporary objects. by Douglas Gregor · 14 years ago
  4. 1eee5dc Teach the evaluation of the __is_convertible_to trait to translate by Douglas Gregor · 14 years ago
  5. 418df34 Separate the access-control diagnostics from other diagnostics that do not have SFINAE behavior. by Douglas Gregor · 14 years ago
  6. a050618 Document some serious badness in our evaluation of the type traits: we need to be sure we have complete types in many cases by Douglas Gregor · 14 years ago
  7. 9f36113 Implement the Microsoft __is_convertible_to type trait, modeling the by Douglas Gregor · 14 years ago
  8. 63e7d25 Fixed parameter names. by Abramo Bagnara · 14 years ago
  9. b7ee2e5 Revert r124217 because it didn't catch the actual error case it was trying to by Jeffrey Yasskin · 14 years ago
  10. 2a5c45b Allow #pragma unused to be used on global variables like gcc. Fixes rdar://8793832. by Argyrios Kyrtzidis · 14 years ago
  11. 6ec278d Do a proper recursive lookup when deciding whether a class's usual by John McCall · 14 years ago
  12. dfbb02a Fix whitespace. by NAKAMURA Takumi · 14 years ago
  13. 0099530 7bit-ize. by NAKAMURA Takumi · 14 years ago
  14. eb7a779 Tweak -Wuninitialized fixit for '_Bool' types to be initialized to 0, and C++ 'bool' types to false. by Ted Kremenek · 14 years ago
  15. 2c3af5c Teach -Wuninitialized to suggest "= false" for initializing bool variables. by Ted Kremenek · 14 years ago
  16. fd1a8fd When we run into a template parameter that should have a default by Douglas Gregor · 14 years ago
  17. 944aa60 Cope with parenthesized function declarators when emitting a by Douglas Gregor · 14 years ago
  18. 14d0aee Fix a horrible bug in our handling of C-style casting, where a C-style by Douglas Gregor · 14 years ago
  19. b145ee6 Implement the restriction that a function with a ref-qualifier cannot by Douglas Gregor · 14 years ago
  20. 8ec14e6 Handle C-style casts to rvalue reference types that cast away constness. by Douglas Gregor · 14 years ago
  21. fcab48b Rvalue references for *this: explicitly keep track of whether a by Douglas Gregor · 14 years ago
  22. 2c9a03f Rvalue references for *this: implement the implicit conversion rules by Douglas Gregor · 14 years ago
  23. 57c9f4f Rvalue references for *this: allow functions to be overloaded based on by Douglas Gregor · 14 years ago
  24. e3c7a7c Rvalue references for *this: tentative parsing and template argument deduction. by Douglas Gregor · 14 years ago
  25. 6b4df91 Reference qualifiers for *this: implement C++0x [expr.mptr.oper]p6, by Douglas Gregor · 14 years ago
  26. 440a483 Reinstate r124236 (tweaking the rvalue-reference overload resolution by Douglas Gregor · 14 years ago
  27. c938c16 Rvalue references for *this: by Douglas Gregor · 14 years ago
  28. 5811f59 Teach -Wreturn-type that destructors can appear by Ted Kremenek · 14 years ago
  29. 83f5172 Rvalue references for *this: parse ref-qualifiers. by Douglas Gregor · 14 years ago
  30. a4356ad Correct r124242 making sure function chunk that gets diagnosed is really about the block. by Argyrios Kyrtzidis · 14 years ago
  31. d0fbadd Tweak the rule for deciding if a provisional ivar is needed by Fariborz Jahanian · 14 years ago
  32. 4d4feea Speculatively revert r124236 by Douglas Gregor · 14 years ago
  33. ce95566 Diagnose calling convention attribute incompatibilities. Fixes rdar://8876096. by Argyrios Kyrtzidis · 14 years ago
  34. df8dc5d Fix infinite loop during error diagnostics. Fixes rdar://8875304. by Argyrios Kyrtzidis · 14 years ago
  35. 9865044 Change error "function cannot return array type" -> "blocks cannot return array type" when blocks are involved. by Argyrios Kyrtzidis · 14 years ago
  36. f39e6a3 Fix regression in -Wreturn-type caused by not by Ted Kremenek · 14 years ago
  37. b7cd135 Speculatively implement a tweak to the C++0x overload resolution rules by Douglas Gregor · 14 years ago
  38. c60e13a Add an attribute to forbid temporary instances of a type. This allows class by Jeffrey Yasskin · 14 years ago
  39. 48a4ce7 Fix the ranking of reference bindings during overload resolution by Douglas Gregor · 14 years ago
  40. a8c17a5 Teach -Wuninitialized-experimental to also warn by Ted Kremenek · 14 years ago
  41. c21c7e9 Teach TemplateSpecializationTypeLoc::initializeArgLocs() to actually by Douglas Gregor · 14 years ago
  42. a5c6c2a Don't insert class templates into the DynamicClasses vector. by Anders Carlsson · 14 years ago
  43. ae201f7 Be a bit more defensive about setting the temporary base location by Douglas Gregor · 14 years ago
  44. 73b3cf6 Implement the rvalue-reference deduction transformation (from T&& -> by Douglas Gregor · 14 years ago
  45. 88b22a4 When performing a glvalue-to-xvalue static_cast that involves a by Douglas Gregor · 14 years ago
  46. c7ad381 Add the ns_consumes_self, ns_consumed, cf_consumed, and ns_returns_autoreleased by John McCall · 14 years ago
  47. 5af1f06 Revert r124146 for now. It appears to be failing on a few platforms. by Eric Christopher · 14 years ago
  48. e07ae4e pre/post increase/decrease for AltiVec vectors by Anton Yartsev · 14 years ago
  49. 446e402 Enhance the diagnostic for referring to a typedef with an elaborated name to be by Nick Lewycky · 14 years ago
  50. 5505c72 Disallow function template partial specializations, from Hans by Douglas Gregor · 14 years ago
  51. cb88a1f Use attributes for all the override control specifiers. by Anders Carlsson · 14 years ago
  52. 8dde14e Re-instate r123977/r123978, my updates of the reference-binding by Douglas Gregor · 14 years ago
  53. 15e14a2 Get rid of [[hiding]], [[override]] and [[base_check]]. by Anders Carlsson · 14 years ago
  54. f89e042 Get rid of the [[final]] C++0x attribute. by Anders Carlsson · 14 years ago
  55. e00909a Tweak diagnostic: by Ted Kremenek · 14 years ago
  56. 9577abc Null initialize a few variables flagged by by Ted Kremenek · 14 years ago
  57. aa23d28 Implement [class.derived]p8. by Anders Carlsson · 14 years ago
  58. 7028088 Mark classes final and/or explicit during class template instantiation. by Anders Carlsson · 14 years ago
  59. dfc2f10 Mark classes as final or explicit. Diagnose when a class marked 'final' is used as a base. by Anders Carlsson · 14 years ago
  60. cc54d59 Parse class-virt-specifier-seqs. by Anders Carlsson · 14 years ago
  61. 46127a9 More work on ClassVirtSpecifiers. by Anders Carlsson · 14 years ago
  62. aa5952c revert r123977 and r123978 to fix PR9026. by Rafael Espindola · 14 years ago
  63. c46bb7d Start stubbing out a ClassVirtSpecifiers class. by Anders Carlsson · 14 years ago
  64. f1602a5 A member function template cannot be virtual. by Anders Carlsson · 14 years ago
  65. 575d2a3 Update const_cast semantics for rvalue references. Add tests for by Douglas Gregor · 14 years ago
  66. dc843f2 Teach static_cast and dynamic_cast about rvalue references. by Douglas Gregor · 14 years ago
  67. dcfb360 Provide -Wuninitialized-experimental fixits by Ted Kremenek · 14 years ago
  68. 72dfa27 When throwing an elidable object, first try to treat the subexpression by Douglas Gregor · 14 years ago
  69. 07f402c Generalize the NRVO move-construction-based initialization routine. No functionality change by Douglas Gregor · 14 years ago
  70. fbb178a Add basic fixits for -Wuninitialized-experimental by Ted Kremenek · 14 years ago
  71. 94b1b4d Enhance -Wuninitialized-experimental diagnostics by Ted Kremenek · 14 years ago
  72. cc15f01 Implement the preference for move-construction over copy-construction by Douglas Gregor · 14 years ago
  73. 4a46c77 We love parentheses by Douglas Gregor · 14 years ago
  74. f5d8f46 Promote the static getNRVOCandidate() function, which computed the by Douglas Gregor · 14 years ago
  75. b939a19 Implement core issue 1164, which concerns the partial ordering of by Douglas Gregor · 14 years ago
  76. b13ede9 Add test for overload resolution's preference for binding an rvalue by Douglas Gregor · 14 years ago
  77. 0baa922 Eliminate an unused variable by Douglas Gregor · 14 years ago
  78. 68ed68b Update the reference-binding implementation used for overload by Douglas Gregor · 14 years ago
  79. 2ad746a Implement the special template argument deduction rule for T&& in a by Douglas Gregor · 14 years ago
  80. c80e811 Sema: process non-inheritable attributes on function declarations early by Peter Collingbourne · 14 years ago
  81. 6070039 Sema: support for processing non-inheritable declaration attributes early by Peter Collingbourne · 14 years ago
  82. a97d70b Generalise support for non-inheritable attributes by Peter Collingbourne · 14 years ago
  83. fb5d7ef Improve the diagnostic that complains about binding an rvalue by Douglas Gregor · 14 years ago
  84. b2855ad More work to bring reference binding up to the latest C++0x by Douglas Gregor · 14 years ago
  85. 564cb06 When performing reference binding via a conversion function, perform by Douglas Gregor · 14 years ago
  86. 411c25c Initialize a variable, found by Ted. by Fariborz Jahanian · 14 years ago
  87. 8619edd Fix a use of uninitialized variables, found by Ted! by Douglas Gregor · 14 years ago
  88. c5db24d Start refactoring reference binding to more closely match the C++0x by Douglas Gregor · 14 years ago
  89. 2e1c730 Diagnose when a virtual member function marked final is overridden. by Anders Carlsson · 14 years ago
  90. 69d8316 Add some tests for reference-collapsing and referencing binding by Douglas Gregor · 14 years ago
  91. 9eefa22 When instantiating member functions, propagate whether the member function is marked 'final' and 'override'. by Anders Carlsson · 14 years ago
  92. 3ffe183 When checking for functions marked override, ignore dependent contexts. by Anders Carlsson · 14 years ago
  93. 4ebf160 Make CheckOverrideControl a member of Sema. by Anders Carlsson · 14 years ago
  94. 9e682d9 Diagnose virtual member functions marked override but not overriding any virtual member functions. by Anders Carlsson · 14 years ago
  95. aae5af2 Only allow virtual member functions to be marked 'override' and 'final'. by Anders Carlsson · 14 years ago
  96. 69a8735 Pass the VirtSpecifiers along to Sema::ActOnCXXMemberDeclarator. by Anders Carlsson · 14 years ago
  97. 706df2f Fix PR8884 by skipping transparent contexts. The test is for LikageSpec. I by Rafael Espindola · 14 years ago
  98. 83eecbe When building a user-defined conversion sequence, keep track of the by Douglas Gregor · 14 years ago
  99. f2ae526 Sema::BuildCXXMemberCallExpr() can fail due to access or ambiguities, by Douglas Gregor · 14 years ago
  100. dfc331e Explicitly track the number of call arguments provided when performing by Douglas Gregor · 14 years ago