Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/cppcheck.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1452,7 +1452,7 @@ void CppCheck::executeAddons(const std::vector<std::string>& files, const std::s

if (files.size() >= 2 || endsWith(files[0], ".ctu-info")) {
// TODO: can this conflict when using -j?
Comment thread
danmar marked this conversation as resolved.
Outdated
fileList = Path::getPathFromFilename(files[0]) + FILELIST;
fileList = Path::getPathFromFilename(files[0]) + FILELIST + ("-" + std::to_string(mSettings.pid)) + ".txt";
std::ofstream fout(fileList);
filesDeleter.addFile(fileList);
// TODO: check if file could be created
Expand Down