alignas
keyword
Specifies the alignment requirement of a type or an object. Saw at Tesla.
Resources
// Every object of type struct_float will be aligned
// to alignof(float) boundary (usually 4):
struct alignas(float) struct_float
{
// your definition here
};