summaryrefslogtreecommitdiff
path: root/test/SemaCXX/switch.cpp
AgeCommit message (Expand)Author
2016-12-08[Sema] Avoid "case value not in enumerated type" warning for C++11 opaque enumsAlex Lorenz
2013-05-21Refactor places which perform contextual implicit conversions to go through aRichard Smith
2012-02-17Reject continue/break statements within members of local functions nested withinRichard Smith
2012-01-22Move -Wswitch-enum to -WswitchDavid Blaikie
2011-05-31Expand the coverage of the warning for constants on the RHS of logical operands:Chandler Carruth
2011-02-24compute the integer width, not the memory width here. We want to know thatChris Lattner
2010-07-24turn down the logical bitwise confusion warning to not warn Chris Lattner
2010-07-13Add a warning to catch a bug recently caught by code review, like this:Chris Lattner
2010-05-18If a switch condition is constant, don't warn about missing enum cases.John McCall
2009-12-15Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'.Daniel Dunbar
2009-11-23Require a class type to be complete before probing its conversionDouglas Gregor
2009-11-23Implement conversion from a switch condition with class type to anDouglas Gregor
2009-10-17Fix for PR5190, Credit to Zhanyong Wan.Edward O'Callaghan