comment out old memleak checking. maybe it can be removed.

This commit is contained in:
Daniel Marjamäki 2018-11-20 18:40:18 +01:00
parent b4aa04db41
commit 8227188786
1 changed files with 2 additions and 1 deletions

View File

@ -187,7 +187,8 @@ public:
void runSimplifiedChecks(const Tokenizer *tokenizer, const Settings *settings, ErrorLogger *errorLogger) override {
CheckMemoryLeakInFunction checkMemoryLeak(tokenizer, settings, errorLogger);
checkMemoryLeak.checkReallocUsage();
checkMemoryLeak.check();
// Commented out so we can evaluate if this checking can be removed.
//checkMemoryLeak.check();
}
/** @brief Unit testing : testing the white list */