diff --git a/CMakeLists.txt b/CMakeLists.txt index 7999780..220462c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -17,7 +17,7 @@ endif() set(VERSION_MAJOR 1) set(VERSION_MINOR 6) -set(VERSION_PATCH 1) +set(VERSION_PATCH 2) set(VERSION_TWEAK 0) set(VERSION_RC "${CMAKE_CURRENT_BINARY_DIR}/version.rc") diff --git a/modules/ModfileLoader.ixx b/modules/ModfileLoader.ixx index ca7e729..e356f93 100644 --- a/modules/ModfileLoader.ixx +++ b/modules/ModfileLoader.ixx @@ -96,7 +96,7 @@ void ParseSimpleArchive(const libzippp::ZipArchive& archive, std::vector& lines, libzippp::ZipArchive& a try { crc_hash = std::stoul(address_string, nullptr, 16); } - catch (const std::invalid_argument& e) { + catch (const std::invalid_argument&) { Warning("Failed to parse %s as a hash", address_string.c_str()); continue; } - catch (const std::out_of_range& e) { + catch (const std::out_of_range&) { Warning("Out of range while parsing %s as a hash", address_string.c_str()); continue; }