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) { }