From fdfe39299cbe253ac4116ce09a5936f9253695f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Fri, 8 Mar 2019 20:33:16 +0100 Subject: [PATCH] Moved CheckStl::pushback 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 c934da807..7ed8080c6 100644 --- a/lib/checkstl.h +++ b/lib/checkstl.h @@ -66,6 +66,7 @@ public: checkStl.missingComparison(); checkStl.outOfBounds(); checkStl.outOfBoundsIndexExpression(); + checkStl.pushback(); } /** Simplified checks. The token list is simplified. */ @@ -79,7 +80,6 @@ public: checkStl.stlOutOfBounds(); checkStl.negativeIndex(); checkStl.erase(); - checkStl.pushback(); checkStl.stlBoundaries(); checkStl.string_c_str(); checkStl.checkAutoPointer();