aboutsummaryrefslogtreecommitdiffstats
path: root/src/checks/level1/inefficient-qlist-soft.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/checks/level1/inefficient-qlist-soft.cpp')
-rw-r--r--src/checks/level1/inefficient-qlist-soft.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/checks/level1/inefficient-qlist-soft.cpp b/src/checks/level1/inefficient-qlist-soft.cpp
index 0c36dbd5..1adffb74 100644
--- a/src/checks/level1/inefficient-qlist-soft.cpp
+++ b/src/checks/level1/inefficient-qlist-soft.cpp
@@ -21,7 +21,6 @@
#include "inefficient-qlist-soft.h"
#include "Utils.h"
-#include "checkmanager.h"
#include "StringUtils.h"
#include <clang/AST/AST.h>
@@ -30,17 +29,9 @@
using namespace clang;
using namespace std;
-
InefficientQListSoft::InefficientQListSoft(const std::string &name, ClazyContext *context)
: InefficientQListBase(name, context, IgnoreNonLocalVariable | IgnoreInFunctionWithSameReturnType |
IgnoreIsAssignedToInFunction | IgnoreIsPassedToFunctions|
IgnoreIsInitializedByFunctionCall)
{
}
-
-void InefficientQListSoft::VisitStmt(clang::Stmt *stmt)
-{
-}
-
-
-REGISTER_CHECK("inefficient-qlist-soft", InefficientQListSoft, CheckLevel1)