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
The transformBlobs function currently takes it's View argument by l-value reference, which does not allow to move an existing view into the function argument. However, there are some blob transformations where this could be useful. E.g. converting a View using unique_ptr blobs to a view using shared_ptr blobs. We should allow this behavior.
The text was updated successfully, but these errors were encountered:
The
transformBlobs
function currently takes it'sView
argument by l-value reference, which does not allow to move an existing view into the function argument. However, there are some blob transformations where this could be useful. E.g. converting a View usingunique_ptr
blobs to a view usingshared_ptr
blobs. We should allow this behavior.The text was updated successfully, but these errors were encountered: