Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Return raw pointer for etl::multi_span::operator->(). #773

Commits on Oct 12, 2023

  1. Return raw pointer for etl::multi_span::operator->().

    - 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.
    dhebbeker committed Oct 12, 2023
    Configuration menu
    Copy the full SHA
    52c97d3 View commit details
    Browse the repository at this point in the history