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 facer/engine/utils/S…
…tatsD.cpp Summary: `-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: D51977749 fbshipit-source-id: aab6f8bcb8a0d9273b7894b8e85615d4a31cac86
- Loading branch information