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
While declaring the Ram_allocator non-copyable it became apparent that Session_env has the requirement to be copyable in the current implementation. We should reconsider this internal structure.
The text was updated successfully, but these errors were encountered:
Prevent erratic runtime behavior stemming from accidentally passing a
copy to a `Ram_allocator` by making the interface noncopyable.
In consequence, we had to provide an explicit copy constructor for
`Session_env` in server/nic_router, which will be reconsidered in
issue #5405.
Issue #5221
Prevent erratic runtime behavior stemming from accidentally passing a
copy to a `Ram_allocator` by making the interface noncopyable.
In consequence, we had to provide an explicit copy constructor for
`Session_env` in server/nic_router, which will be reconsidered in
issue #5405.
Issue #5221
While declaring the
Ram_allocator
non-copyable it became apparent thatSession_env
has the requirement to be copyable in the current implementation. We should reconsider this internal structure.The text was updated successfully, but these errors were encountered: