<errorid="unreadVariable"severity="style"msg="Variable &#039;a&#039; is assigned a value that is never used"verbose="Variable &#039;a&#039; is assigned a value that is never used">
<locationfile="test.cxx"line="11"/>
</error>
<errorid="unreadVariable"severity="style"msg="Variable &#039;b&#039; is assigned a value that is never used"verbose="Variable &#039;b&#039; is assigned a value that is never used">
<errorid="obsoleteFunctionsgets"severity="style"msg="Found obsolescent function &#039;gets&#039;. It is recommended to use the function &#039;fgets&#039; instead"verbose="Found obsolescent function &#039;gets&#039;. With gets you&#039;ll get buffer overruns if the input data too big for the buffer. It is recommended to use the function &#039;fgets&#039; instead.">
<errorid="postfixOperator"severity="performance"msg="Prefer prefix ++/-- operators for non-primitive types."verbose="Prefix ++/-- operators should be preferred for non-primitive types. Pre-increment/decrement can be more efficient than post-increment/decrement. Post-increment/decrement usually involves keeping a copy of the previous value around and adds a little extra code.">