Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 286 Bytes

MA0073.md

File metadata and controls

23 lines (17 loc) · 286 Bytes

MA0073 - Avoid comparison with bool constant

Non-compliant code

const bool MyConstant = false;
bool value = GetSomeValue();

if (value == MyConstant)
{
}

Compliant code

const bool MyConstant = false;
bool value = GetSomeValue();

if (!value)
{
}