Directs the compiler to align the variable to a specified boundary and a specified offset.
Windows __declspec(align(n)) |
Linux __attribute__((aligned(n))) |
For portability on Linux OS, you should use the syntax form __attribute__((aligned(n))). This form is compatible with the GNU compiler.
n |
Specifies the alignment. The compiler will align the variable to an n-byte boundary. |
This keyword directs the compiler to align the variable to an n-byte boundary.