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 cachelib/allocator/tests/TestB…
…ase-inl.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: vrishal Differential Revision: D52957797 fbshipit-source-id: 482d1b631904ce4bc8d72849f92e42992f80bb4a
- Loading branch information