C++11
The alignas keyword can be used to force a variable, class data member, declaration or definition of a class, or declaration or definition of an enum, to have a particular alignment, if supported. It comes in two forms:
alignas(x), where x is a constant expression, gives the entity the ali...