diff --git a/main.cpp b/main.cpp index a0632af..649f888 100644 --- a/main.cpp +++ b/main.cpp @@ -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)