Simplify error handling in BinaryTable by removing unused exception variable
This commit is contained in:
parent
75d682a41d
commit
782e3fcd94
1 changed files with 1 additions and 1 deletions
|
|
@ -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 (...) {
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue