Commit 714b46a
executorch/{kernel,examples}: fix llvm-17-exposed format mismatches (#6350)
Summary:
This avoids the following errors:
executorch/examples/portable/custom_ops/custom_ops_1_out.cpp:23:7: error: format specifies type 'char' but the argument has type 'ScalarType' [-Werror,-Wformat]
executorch/examples/portable/custom_ops/custom_ops_1_out.cpp:27:7: error: format specifies type 'char' but the argument has type 'ScalarType' [-Werror,-Wformat]
xplat/executorch/kernels/test/custom_kernel_example/op_relu.cpp:90:11: error: format specifies type 'char' but the argument has type 'ScalarType' [-Werror,-Wformat]
Differential Revision: D645773701 parent fad26af commit 714b46a
File tree
2 files changed
+3
-3
lines changed- examples/portable/custom_ops
- kernels/test/custom_kernel_example
2 files changed
+3
-3
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
20 | 20 | | |
21 | 21 | | |
22 | 22 | | |
23 | | - | |
| 23 | + | |
24 | 24 | | |
25 | 25 | | |
26 | 26 | | |
27 | | - | |
| 27 | + | |
28 | 28 | | |
29 | 29 | | |
30 | 30 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
87 | 87 | | |
88 | 88 | | |
89 | 89 | | |
90 | | - | |
| 90 | + | |
91 | 91 | | |
92 | 92 | | |
93 | 93 | | |
| |||
0 commit comments