pytorch/torch/csrc/jit/frontend
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
..
builtin_functions.cpp
builtin_functions.h
canonicalize_modified_loop.cpp
canonicalize_modified_loop.h
concrete_module_type.cpp
concrete_module_type.h
convert_to_ssa.cpp
convert_to_ssa.h
edit_distance.cpp
edit_distance.h
error_report.cpp
error_report.h
exit_transforms.cpp
exit_transforms.h
function_schema_parser.cpp
function_schema_parser.h
inline_loop_condition.cpp
inline_loop_condition.h
ir_emitter.cpp
ir_emitter.h
lexer.cpp
lexer.h
mini_environment.h
name_mangler.cpp
name_mangler.h
parse_string_literal.h
parser_constants.h
parser.cpp
parser.h
resolver.h
schema_matching.cpp
schema_matching.h
schema_type_parser.cpp
schema_type_parser.h
script_type_parser.cpp
script_type_parser.h
source_range.cpp
source_range.h
source_ref.h
strtod.cpp
strtod.h
sugared_value.cpp
sugared_value.h
tracer.cpp
tracer.h
tree_views.cpp
tree_views.h
tree.h
versioned_symbols.cpp
versioned_symbols.h