|
|
|
|
|
by scoutt
2187 days ago
|
|
If you declare a structure of unaligned size, the compiler might (probably must) introduce some padding bytes at the end of the structure to fit the alignment. In some architectures you cannot do unaligned accesses (ARM for example). Unless you pack the structure with the alignment you want. |
|