Code cleanup, __temp__ files are not needed anymore

This commit is contained in:
Daniel Marjamäki 2020-07-14 16:54:00 +02:00
parent 8d6fd4769b
commit a6d70b9022
1 changed files with 0 additions and 6 deletions

View File

@ -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()