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

Minor soapy cleanups #433

Merged
merged 2 commits into from
Oct 1, 2024
Merged

Minor soapy cleanups #433

merged 2 commits into from
Oct 1, 2024

Commits on Sep 30, 2024

  1. Avoid reference to stdlib function

    … which is unspecified (possibly ill-formed):
    https://eel.is/c++draft/library#namespace.std-6
    
    Signed-off-by: Matthias Kretz <[email protected]>
    mattkretz committed Sep 30, 2024
    Configuration menu
    Copy the full SHA
    a36bdd9 View commit details
    Browse the repository at this point in the history
  2. Use std::tie instead of std::forward_as_tuple

    The former creates a tuple of lvalue references, the latter can
    additionally hold rvalue references, which is not the intent here.
    
    Signed-off-by: Matthias Kretz <[email protected]>
    mattkretz committed Sep 30, 2024
    Configuration menu
    Copy the full SHA
    22e7314 View commit details
    Browse the repository at this point in the history