Replies: 1 comment
-
Not a good idea, in fact. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
So... Afx_lightblock is a bit too heavy
as you can see, you have to add
Afx_action
structures toAfx_lightblock.act
, this makes copies for them, when it really does not have to.What we could do is change the structure to:
Or, we could just not use std::vectors:
This should should cause no problems, since the code is not meant to be thread safe anyway ANNND the library code does not need the data after returning. The caller can clean up thier own memory after the call.
If council of contributors agree, then I shall make the changes with haste. Probably.
Beta Was this translation helpful? Give feedback.
All reactions