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
Using placement new is a hassle due to the disconnect between the byte storage, construction, destruction and access syntax (due to the need to std::launder() the pointer).
Proposed Solution
A template type which binds the required functions, alignment and size requirements.
The text was updated successfully, but these errors were encountered:
Problem Description
Using placement new is a hassle due to the disconnect between the byte storage, construction, destruction and access syntax (due to the need to
std::launder()
the pointer).Proposed Solution
A template type which binds the required functions, alignment and size requirements.
The text was updated successfully, but these errors were encountered: