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

fix mech extractor #6118

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

fix mech extractor #6118

wants to merge 1 commit into from

Conversation

akva2
Copy link
Member

@akva2 akva2 commented Mar 28, 2025

Using .emplace() on vector is not a good idea. Compiler also doesn't want to use braced init for the struct for some reason, so resort to push_back().

@bska
Copy link
Member

bska commented Mar 28, 2025

Compiler also doesn't want to use braced init for the struct for some reason,

It will in C++20. The Entry is a POD and, before C++20, vector<>::emplace()–did you mean emplace_back()–doesn't work with PODs. It's really annoying, and it's the reason I sometimes add a banal constructor to my PODs. The rules for aggregate initialisation change in C++20 and, as a side effect, these kinds of in-place construction operations now work.

@akva2
Copy link
Member Author

akva2 commented Mar 28, 2025

yeah, that's what i mean. there were two problem, first i had used emplace, which obviously was wrong. the second problem is what you're describing much better than me, ie, that it is a c++20-ism (i knew it had worked in other code i did!). i could add the ctor, but since it's only a single entry and only a one-per-timestep thing I just ate the push_back.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants