Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Return raw pointer for
etl::multi_span::operator->()
. (#773)
- using `operator*()` in case getting the current element is changed one day - using `&` to get the address Simply returning `p_value` may break in case the internal type of `p_value` would change. This way it is more robust to changes.
- Loading branch information