Simplify error handling in BinaryTable by removing unused exception variable

This commit is contained in:
ImBenji
2025-10-13 14:34:09 +01:00
parent 75d682a41d
commit 782e3fcd94

View File

@@ -656,7 +656,7 @@ std::unordered_map<int64_t, BT_Pointer> BinaryTable::getAddressTable() {
} }
return addressTable; return addressTable;
} catch (const std::runtime_error& e) { } catch (const std::runtime_error&) {
// Re-throw runtime errors (our validation failures) // Re-throw runtime errors (our validation failures)
throw; throw;
} catch (...) { } catch (...) {