Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove unused exception parameter from files inc dynolog/src/rpc/Simp…
…leJsonServerInl.h (#204) Summary: Pull Request resolved: #204 `-Wunused-exception-parameter` has identified an unused exception parameter. This diff removes it. 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: dmm-fb Differential Revision: D51977808 fbshipit-source-id: 615639c2db7d63fbac33e3a3a4317b48dbc869d1
- Loading branch information