Commit 80add81
Fix undefined behavior in model.h.
The function LiteRtTensorT::NumElements() was assuming that
decltype(dims[0])=`const int` if dims is a const reference to an array
of ints. In fact, it's `const int&`. The effect is a difference in
behavior between optimized and non-optimized builds.
LiteRT-PiperOrigin-RevId: 8198881991 parent 555a7fe commit 80add81
2 files changed
+5
-3
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
25 | 25 | | |
26 | 26 | | |
27 | 27 | | |
| 28 | + | |
28 | 29 | | |
29 | 30 | | |
30 | 31 | | |
| |||
389 | 390 | | |
390 | 391 | | |
391 | 392 | | |
392 | | - | |
393 | | - | |
394 | | - | |
| 393 | + | |
| 394 | + | |
| 395 | + | |
395 | 396 | | |
396 | 397 | | |
397 | 398 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
166 | 166 | | |
167 | 167 | | |
168 | 168 | | |
| 169 | + | |
169 | 170 | | |
170 | 171 | | |
171 | 172 | | |
| |||
0 commit comments