eupak: Clean up create command warnings

oops
This commit is contained in:
Lily Tsuru 2025-01-21 17:44:49 -05:00
parent badda50a87
commit 6090c5cfe6

View file

@ -187,7 +187,6 @@ namespace eupak {
} }
int Run() override { int Run() override {
auto currFile = 0;
auto fileCount = 0; auto fileCount = 0;
// Count how many files we're gonna add to the archive // Count how many files we're gonna add to the archive
@ -243,7 +242,6 @@ namespace eupak {
}); });
files.emplace_back(std::make_pair(relativePathName, std::move(file))); files.emplace_back(std::make_pair(relativePathName, std::move(file)));
currFile++;
} }
std::ofstream ofs(currentArgs.outputFile.string(), std::ofstream::binary); std::ofstream ofs(currentArgs.outputFile.string(), std::ofstream::binary);