What is aligned_storage in Modern C++
April 4, 2023
The C++11 standard introduced alignment support as one of the many features of the C++ programming language that can be used with the newest C++ compilers today. One of the new features of this support was a new keyword align std::aligned_storage that is used to provide the nested type which can be used as an uninitialized storage for any object whose size is at most given object size by…

