From 5fe48f3cd2ec960879af8d84658c2c818b4d6c91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Fri, 8 Mar 2019 20:31:00 +0100 Subject: [PATCH] Moved CheckStl::mismatchingContainers to normal checking --- lib/checkstl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/checkstl.h b/lib/checkstl.h index e2ecec8cc..c934da807 100644 --- a/lib/checkstl.h +++ b/lib/checkstl.h @@ -62,6 +62,7 @@ public: CheckStl checkStl(tokenizer, settings, errorLogger); checkStl.if_find(); checkStl.iterators(); + checkStl.mismatchingContainers(); checkStl.missingComparison(); checkStl.outOfBounds(); checkStl.outOfBoundsIndexExpression(); @@ -77,7 +78,6 @@ public: checkStl.stlOutOfBounds(); checkStl.negativeIndex(); - checkStl.mismatchingContainers(); checkStl.erase(); checkStl.pushback(); checkStl.stlBoundaries();