1. 3fa3fea PR15132: Replace "address expression must be an lvalue or a function by Richard Smith · 12 years ago
  2. 654f1d5 Fix PR13784: instantiation of an abstract class in a conditional operator. by David Blaikie · 12 years ago
  3. 50d61c8 Implement final piece of DR963 and also DR587: by Richard Smith · 12 years ago
  4. 7984de3 Improve 0-argument -Wvexing-parse diagnostic by adding notes with fix-its: by Richard Smith · 13 years ago
  5. cb7709c PR10828: Produce a warning when a no-arguments function is declared in block by Richard Smith · 13 years ago
  6. 762bb9d Update all tests other than Driver/std.cpp to use -std=c++11 rather than by Richard Smith · 13 years ago
  7. 5254161 Remove warning for conditional operands of differend signedness from -Wsign-compare. Cases that previously warn on this will have a different warning emitted from -Wsign-conversion. by Richard Trieu · 13 years ago
  8. abea951 Add -fcxx-exceptions to all tests that use C++ exceptions. by Anders Carlsson · 13 years ago
  9. e41721e Pass -fexceptions to all tests that use try/catch/throw. by Anders Carlsson · 14 years ago
  10. 7ef9324 Fix a missed case in the NULL operand to conditional operator diagnostics. by Chandler Carruth · 14 years ago
  11. 82214a8 Initial steps to improve diagnostics when there is a NULL and by Chandler Carruth · 14 years ago
  12. 8dde14e Re-instate r123977/r123978, my updates of the reference-binding by Douglas Gregor · 14 years ago
  13. aa5952c revert r123977 and r123978 to fix PR9026. by Rafael Espindola · 14 years ago
  14. 68ed68b Update the reference-binding implementation used for overload by Douglas Gregor · 14 years ago
  15. 0c42bb6 'const std::type_info*' instead of 'std::type_info const*' by Chris Lattner · 14 years ago
  16. 5495f37 Wire up '-Wignored-qualifiers' to the warning on 'const' in 'const int f()'. by Chandler Carruth · 14 years ago
  17. de80ec1 Improve diagnostics for the "type qualifier on return type has no by Douglas Gregor · 14 years ago
  18. 5291c3c When forming a function call or message send expression, be sure to by Douglas Gregor · 14 years ago
  19. 4712c02 When performing copy initialization via user-defined conversions, by Douglas Gregor · 14 years ago
  20. b65a458 When a conditional operator is an rvalue of class type, we need to by Douglas Gregor · 14 years ago
  21. 323ed74 Rearchitect -Wconversion and -Wsign-compare. Instead of computing them by John McCall · 14 years ago
  22. d1a2722 When we are performing copy initialization of a class type via its by Douglas Gregor · 14 years ago
  23. 3fbaf3e Improve our handling of user-defined conversions as part of overload by Douglas Gregor · 14 years ago
  24. 7002f4c Turn access control on by default in -cc1. by John McCall · 14 years ago
  25. 2f59979 Rework our handling of copy construction of temporaries, which was a by Douglas Gregor · 14 years ago
  26. 0fd8ff7 When trying to determine whether one operand of a conditional by Douglas Gregor · 14 years ago
  27. b70cf44 Switch semantic analysis of the conditional operator from using by Douglas Gregor · 14 years ago
  28. a2936be Promote enum types during -Wsign-compare. Fixes some spurious warnings, by John McCall · 14 years ago
  29. 7c2342d When pretty-printing tag types, only print the tag if we're in C (and by John McCall · 14 years ago
  30. 6b2accb Improve access control diagnostics. Perform access control on member-pointer by John McCall · 15 years ago
  31. 4248491 Chris thinks these diagnostics are better now. :) by John McCall · 15 years ago
  32. 1d31833 Introduce a specific representation for the ambiguous implicit conversion by John McCall · 15 years ago
  33. aa03731 Switch initialization of parameters in a call over to by Douglas Gregor · 15 years ago
  34. a572887 Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'. by Daniel Dunbar · 15 years ago
  35. 35de813 Turn off -Wsign-compare warnings by default by Douglas Gregor · 15 years ago
  36. b13c87f Implement the conditional-operator part of -Wsign-compare. Turn by John McCall · 15 years ago
  37. 1d524c3 Diagnose taking the address of a bit-field inside a conditional operator. by Anders Carlsson · 15 years ago
  38. 20b3e99 Implement support for equality comparisons (!=, ==) of member by Douglas Gregor · 15 years ago
  39. 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
  40. a5cd2cd Make reference class unification in conditional expressions check for validity of the conversion. by Sebastian Redl · 15 years ago
  41. 78eb874 Conditional operator C++ checking complete. What issues remain are in more general code. by Sebastian Redl · 15 years ago
  42. 9bebfad Bring member pointer operands of the conditional operator to a common type. We're getting there ... by Sebastian Redl · 15 years ago
  43. 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
  44. 7645850 Implement lvalue test for conditional expressions. by Sebastian Redl · 15 years ago
  45. 3201f6b Fix a crash bug when comparing overload quality of conversion operators with conversion constructors. by Sebastian Redl · 15 years ago