Merge branch 'main' of github.com:taurusxin/ncmdump

This commit is contained in:
TaurusXin 2024-03-22 12:12:21 +08:00
commit 49bc90e976
1 changed files with 4 additions and 4 deletions

View File

@ -41,10 +41,10 @@ void processFile(const fs::path &filePath)
{
std::cerr << BOLDRED << "Exception: " << RESET << RED << e.what() << RESET << " '" << filePath.u8string() << "'" << std::endl;
}
// catch (...)
// {
// std::cerr << BOLDRED << "Unexpected exception while processing file: " << RESET << filePath.u8string() << std::endl;
// }
catch (...)
{
std::cerr << BOLDRED << "Unexpected exception while processing file: " << RESET << filePath.u8string() << std::endl;
}
}
void processFilesInFolder(const fs::path &folderPath)