Skip to content

Latest commit

 

History

History
39 lines (27 loc) · 554 Bytes

RCS1212.md

File metadata and controls

39 lines (27 loc) · 554 Bytes

RCS1212: Remove redundant assignment

Property Value
Id RCS1212
Category Redundancy
Severity Info

Example

Code with Diagnostic

bool Foo()
{
    // ...

    f = false; // RCS1212
    return f;
}

Code with Fix

bool Foo()
{
    // ...

    return false;
}

See Also

(Generated with DotMarkdown)