Checker | Guideline |
---|
ElseIfWithoutElse | MSC01-CPP. Strive for logical completeness |
NonEmptyCaseWithoutBreak | MSC18-CPP. Finish every set of statements associated with a case label with a break statement |
S1036 | MSC20-CPP. Do not use a switch statement to transfer control into a complex block |
S1116 | MSC12-CPP. Detect and remove code that has no effect |
S1656 | MSC12-CPP. Detect and remove code that has no effect |
S1751 | MSC12-CPP. Detect and remove code that has no effect |
S1762 | MSC00-CPP. Compile cleanly at high warning levels |
S1764 | MSC12-CPP. Detect and remove code that has no effect |
S1862 | MSC12-CPP. Detect and remove code that has no effect |
S973 | MSC00-CPP. Compile cleanly at high warning levels |
SwitchWithoutDefault | MSC01-CPP. Strive for logical completeness |
TrigraphUsage | PRE07-CPP. Avoid using repeated question marks |