pytorch/caffe2/serialize
Richard Barnes 536c0c7a47 [codemod][lowrisk] Remove unused exception parameter from caffe2/aten/src/ATen/cuda/CUDABlas.cpp (#149328)
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: dtolnay

Pull Request resolved: https://github.com/pytorch/pytorch/pull/149328
Approved by: https://github.com/Skylion007, https://github.com/eqy
2025-03-19 02:05:33 +00:00
..
CMakeLists.txt [miniz] Bump miniz version to 3.0.2 and add patch for zip64 (#140041) 2024-11-09 00:13:16 +00:00
crc_alt.h Revert "Fix clang-tidy warnings in Caffe2 code (#134935)" 2024-09-13 16:42:37 +00:00
crc.cc [4/N] Fix Wextra-semi warning (#139256) 2024-10-31 03:01:14 +00:00
file_adapter.cc Format caffe2/serialize (#141850) 2024-12-04 01:14:24 +00:00
file_adapter.h Format caffe2/serialize (#141850) 2024-12-04 01:14:24 +00:00
in_memory_adapter.h Format caffe2/serialize (#141850) 2024-12-04 01:14:24 +00:00
inline_container_test.cc Format caffe2/serialize (#141850) 2024-12-04 01:14:24 +00:00
inline_container.cc [codemod][lowrisk] Remove unused exception parameter from caffe2/aten/src/ATen/cuda/CUDABlas.cpp (#149328) 2025-03-19 02:05:33 +00:00
inline_container.h Make record/storage alignment in torch.save configurable (#147788) 2025-03-06 12:04:46 +00:00
istream_adapter.cc Remove deprecated alias macro(1/3) (#137556) 2024-10-21 17:32:32 +00:00
istream_adapter.h Revert "Fix clang-tidy warnings in Caffe2 code (#134935)" 2024-09-13 16:42:37 +00:00
read_adapter_interface.cc Revert "Fix clang-tidy warnings in Caffe2 code (#134935)" 2024-09-13 16:42:37 +00:00
read_adapter_interface.h Revert "Fix clang-tidy warnings in Caffe2 code (#134935)" 2024-09-13 16:42:37 +00:00
versions.h Revert "Fix clang-tidy warnings in Caffe2 code (#134935)" 2024-09-13 16:42:37 +00:00