1. 7ef9324 Fix a missed case in the NULL operand to conditional operator diagnostics. by Chandler Carruth · 14 years ago
  2. 82214a8 Initial steps to improve diagnostics when there is a NULL and by Chandler Carruth · 14 years ago
  3. 8dde14e Re-instate r123977/r123978, my updates of the reference-binding by Douglas Gregor · 14 years ago
  4. aa5952c revert r123977 and r123978 to fix PR9026. by Rafael Espindola · 14 years ago
  5. 68ed68b Update the reference-binding implementation used for overload by Douglas Gregor · 14 years ago
  6. 0c42bb6 'const std::type_info*' instead of 'std::type_info const*' by Chris Lattner · 14 years ago
  7. 5495f37 Wire up '-Wignored-qualifiers' to the warning on 'const' in 'const int f()'. by Chandler Carruth · 14 years ago
  8. de80ec1 Improve diagnostics for the "type qualifier on return type has no by Douglas Gregor · 14 years ago
  9. 5291c3c When forming a function call or message send expression, be sure to by Douglas Gregor · 14 years ago
  10. 4712c02 When performing copy initialization via user-defined conversions, by Douglas Gregor · 14 years ago
  11. b65a458 When a conditional operator is an rvalue of class type, we need to by Douglas Gregor · 14 years ago
  12. 323ed74 Rearchitect -Wconversion and -Wsign-compare. Instead of computing them by John McCall · 14 years ago
  13. d1a2722 When we are performing copy initialization of a class type via its by Douglas Gregor · 14 years ago
  14. 3fbaf3e Improve our handling of user-defined conversions as part of overload by Douglas Gregor · 14 years ago
  15. 7002f4c Turn access control on by default in -cc1. by John McCall · 14 years ago
  16. 2f59979 Rework our handling of copy construction of temporaries, which was a by Douglas Gregor · 14 years ago
  17. 0fd8ff7 When trying to determine whether one operand of a conditional by Douglas Gregor · 14 years ago
  18. b70cf44 Switch semantic analysis of the conditional operator from using by Douglas Gregor · 14 years ago
  19. a2936be Promote enum types during -Wsign-compare. Fixes some spurious warnings, by John McCall · 15 years ago
  20. 7c2342d When pretty-printing tag types, only print the tag if we're in C (and by John McCall · 15 years ago
  21. 6b2accb Improve access control diagnostics. Perform access control on member-pointer by John McCall · 15 years ago
  22. 4248491 Chris thinks these diagnostics are better now. :) by John McCall · 15 years ago
  23. 1d31833 Introduce a specific representation for the ambiguous implicit conversion by John McCall · 15 years ago
  24. aa03731 Switch initialization of parameters in a call over to by Douglas Gregor · 15 years ago
  25. a572887 Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'. by Daniel Dunbar · 15 years ago
  26. 35de813 Turn off -Wsign-compare warnings by default by Douglas Gregor · 15 years ago
  27. b13c87f Implement the conditional-operator part of -Wsign-compare. Turn by John McCall · 15 years ago
  28. 1d524c3 Diagnose taking the address of a bit-field inside a conditional operator. by Anders Carlsson · 15 years ago
  29. 20b3e99 Implement support for equality comparisons (!=, ==) of member by Douglas Gregor · 15 years ago
  30. a33d9b4 Disable access control by default. It can be enabled with the -faccess-control option. When we have better support for it, we can enable it by default again. by Anders Carlsson · 15 years ago
  31. a5cd2cd Make reference class unification in conditional expressions check for validity of the conversion. by Sebastian Redl · 15 years ago
  32. 78eb874 Conditional operator C++ checking complete. What issues remain are in more general code. by Sebastian Redl · 15 years ago
  33. 9bebfad Bring member pointer operands of the conditional operator to a common type. We're getting there ... by Sebastian Redl · 15 years ago
  34. d1bd7fc Another piece of the conditional operator puzzle. We'll want to use FindCompositePointerType in some other places, too. by Sebastian Redl · 15 years ago
  35. 7645850 Implement lvalue test for conditional expressions. by Sebastian Redl · 15 years ago
  36. 3201f6b Fix a crash bug when comparing overload quality of conversion operators with conversion constructors. by Sebastian Redl · 15 years ago