Commit aad8efd
Remove unused exception parameter from executorch/backends/vulkan/test/custom_ops/utils.cpp (#16253)
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: dtolnay
Differential Revision: D89014357
cc @SS-JIA @digantdesai @cbilgin
Co-authored-by: Richard Barnes <rbarnes@meta.com>1 parent b081123 commit aad8efd
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1288 | 1288 | | |
1289 | 1289 | | |
1290 | 1290 | | |
1291 | | - | |
| 1291 | + | |
1292 | 1292 | | |
1293 | 1293 | | |
1294 | 1294 | | |
| |||
0 commit comments