File indexing completed on 2024-04-28 05:38:31

0001 /*
0002     SPDX-FileCopyrightText: 2016 Sergio Martins <smartins@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #ifndef CLAZY_CONTAINER_INSIDE_LOOP_H
0008 #define CLAZY_CONTAINER_INSIDE_LOOP_H
0009 
0010 #include "checkbase.h"
0011 
0012 #include <string>
0013 
0014 class ClazyContext;
0015 
0016 namespace clang
0017 {
0018 class Stmt;
0019 }
0020 
0021 /**
0022  * Finds places defining containers inside loops. Defining them outside and using resize(0) will
0023  * save allocations.
0024  *
0025  * See README-container-inside-loop for more information
0026  */
0027 class ContainerInsideLoop : public CheckBase
0028 {
0029 public:
0030     explicit ContainerInsideLoop(const std::string &name, ClazyContext *context);
0031     void VisitStmt(clang::Stmt *stmt) override;
0032 };
0033 
0034 #endif