Open r-barnes opened 10 months ago
Summary: -Wunused-exception-parameter has identified an unused exception parameter. This diff removes it.
-Wunused-exception-parameter
This:
try { ... } catch (exception& e) { // no use of e }
should instead be written as
} catch (exception&) {
If the code compiles, this is safe to land.
Reviewed By: palmje
Differential Revision: D51785901
This pull request was exported from Phabricator. Differential Revision: D51785901
Summary:
-Wunused-exception-parameter
has identified an unused exception parameter. This diff removes it.This:
should instead be written as
If the code compiles, this is safe to land.
Reviewed By: palmje
Differential Revision: D51785901