15-09-2016, 12:53 PM
From the official text:
Would a static_cast turn this into a compliant statement?
Static analysis tool used says yes, hence the question.
Code:
uint8_t b = '\r';//Non-compliant, explicitly unsigned
Code:
uint8_t b = static_cast('\r');//Compliant
<t></t>