You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Root cause - how rtt deduce types for move-only objects.
see this test.
Need to figure out how we can use more simple signature without && like void dummy_supervisor::check(std::unique_ptr<dummy_data> data, ...)
The text was updated successfully, but these errors were encountered:
SergeiNA
changed the title
Rtt can apply on non-copy objects without r-value reference
Rtt can be applied on non-copy objects without r-value reference
Oct 2, 2024
Now to use non copy in
send
function we must use&&
(r-value ref) in accepting function signature:Root cause - how rtt deduce types for move-only objects.
see this test.
Need to figure out how we can use more simple signature without
&&
likevoid dummy_supervisor::check(std::unique_ptr<dummy_data> data, ...)
The text was updated successfully, but these errors were encountered: