We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It seems that this code can't be compiled with the current version of SObjectizer:
void so_define_agent() override { auto filter = [](const some_message &) { return true; }; so_set_delivery_filter(mbox, filter); }
because so_set_delivery_filter expects a rvalue reference to lambda-function.
so_set_delivery_filter
Maybe it's necessary to fix so_set_delivery_filter to allow acceptance of lvalue references (const and non-const)?
The text was updated successfully, but these errors were encountered:
Fixes for #50.
df7c3ee
Fixed in v.5.7.4.2.
Sorry, something went wrong.
eao197
No branches or pull requests
It seems that this code can't be compiled with the current version of SObjectizer:
because
so_set_delivery_filter
expects a rvalue reference to lambda-function.Maybe it's necessary to fix
so_set_delivery_filter
to allow acceptance of lvalue references (const and non-const)?The text was updated successfully, but these errors were encountered: