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 velox/functions/lib/SubscriptU…
…til.cpp (facebookincubator#8767) Summary: Pull Request resolved: facebookincubator#8767 `-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: D53780438 fbshipit-source-id: c414827341cea1227983ba80c373f15d8c0aaa7b
- Loading branch information