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 dolores/indexing/configuration…
…/DelosTableShardedObjectManager.h 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: palmje Differential Revision: D55092123 fbshipit-source-id: 6038c6d229202746c376452da2ea1702316bbe0f
- Loading branch information