From a6d70b9022da74bc5350d6f4645910023ead1674 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Tue, 14 Jul 2020 16:54:00 +0200 Subject: [PATCH] Code cleanup, __temp__ files are not needed anymore --- lib/analyzerinfo.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/lib/analyzerinfo.cpp b/lib/analyzerinfo.cpp index 460d9cf16..1d6af8537 100644 --- a/lib/analyzerinfo.cpp +++ b/lib/analyzerinfo.cpp @@ -59,12 +59,6 @@ void AnalyzerInformation::writeFilesTxt(const std::string &buildDir, const std:: const std::string afile = getFilename(fs.filename); fout << afile << ".a" << (++fileCount[afile]) << ":" << fs.cfg << ":" << Path::simplifyPath(Path::fromNativeSeparators(fs.filename)) << std::endl; } - - std::ofstream fc(buildDir + "/__temp__.c"); - fc << "int x;\n"; - - std::ofstream fcpp(buildDir + "/__temp__.cpp"); - fcpp << "int x;\n"; } void AnalyzerInformation::close()