Files
Richard Barnes a205f8aab4 [codemod][lowrisk] Remove unused exception parameter from caffe2/aten/src/ATen/native/transformers/cuda/sdp_utils.cpp (#170386)
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.

Test Plan: Sandcastle

Reviewed By: meyering

Differential Revision: D89122514

Pull Request resolved: https://github.com/pytorch/pytorch/pull/170386
Approved by: https://github.com/aorenste, https://github.com/mlazos, https://github.com/malfet
2025-12-14 13:53:12 +00:00
..