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

thread_id_pool.h: mark variable as [[maybe_unused]] #69

Merged
merged 2 commits into from
Jan 15, 2024

Commits on Jan 9, 2024

  1. thread_id_pool.h: mark variable as [[maybe_unused]]

    mark a variable only used in an assert as [[maybe_unused]] so that non debug builds don't give warnings when compiling with `-Wunused-but-set-variable`
    
    ```
    parlaylib/include/parlay/internal/../internal/../internal/thread_id_pool.h:50:12: warning: variable 'num_destroyed' set but not used [-Wunused-but-set-variable]
       50 |     size_t num_destroyed = 0;
    ```
    wheatman authored Jan 9, 2024
    Configuration menu
    Copy the full SHA
    7c64b50 View commit details
    Browse the repository at this point in the history
  2. increment version

    wheatman authored Jan 9, 2024
    Configuration menu
    Copy the full SHA
    e4ff9a6 View commit details
    Browse the repository at this point in the history