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

Remove use of deprecated std::is_pod type trait #601

Merged
merged 1 commit into from
May 31, 2024

Conversation

stephenswat
Copy link
Member

The std::is_pod type trait has been deprecated in C++20. This commit replaces that type trait with its recommended equivalent, namely a conjunction of std::is_trivial and std::is_standard_layout.

The `std::is_pod` type trait has been deprecated in C++20. This commit
replaces that type trait with its recommended equivalent, namely a
conjunction of `std::is_trivial` and `std::is_standard_layout`.
@stephenswat stephenswat added the refactor Change the structure of the code label May 31, 2024
Copy link
Member

@krasznaa krasznaa left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

@stephenswat stephenswat merged commit 4617a00 into acts-project:main May 31, 2024
19 of 20 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
refactor Change the structure of the code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants