| Auto-Submit | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
if (read_bytes > 0) {`read_bytes.value_or(0)`. `std::optional` does seem to have an [`operator>()`](https://en.cppreference.com/w/cpp/utility/optional.html), but it is cryptic, and I suspect it is not doing what you are expecting.
```suggestion
if (read_bytes.value_or(0) > 0) {
```
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Auto-Submit | +1 |
`read_bytes.value_or(0)`. `std::optional` does seem to have an [`operator>()`](https://en.cppreference.com/w/cpp/utility/optional.html), but it is cryptic, and I suspect it is not doing what you are expecting.
```suggestion
if (read_bytes.value_or(0) > 0) {
```
The previous code was intentional and did the right thing - `std::nullopt` always compares smaller than what can be contained. I've added the `value_or` part for explicitness, though.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Use span-based file API in audio_pipe_reader.cc
No functionality changes.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |