Moved CheckStl::redundantCondition to normal checking

This commit is contained in:
Daniel Marjamäki 2019-03-09 07:53:49 +01:00
parent f9fe6cc96a
commit f36ca56e7d
1 changed files with 1 additions and 1 deletions

View File

@ -68,6 +68,7 @@ public:
checkStl.outOfBounds(); checkStl.outOfBounds();
checkStl.outOfBoundsIndexExpression(); checkStl.outOfBoundsIndexExpression();
checkStl.pushback(); checkStl.pushback();
checkStl.redundantCondition();
checkStl.string_c_str(); checkStl.string_c_str();
checkStl.uselessCalls(); checkStl.uselessCalls();
} }
@ -87,7 +88,6 @@ public:
// Style check // Style check
checkStl.size(); checkStl.size();
checkStl.redundantCondition();
checkStl.useStlAlgorithm(); checkStl.useStlAlgorithm();
} }