Skip to content

Instantly share code, notes, and snippets.

@jeffhung
Created November 3, 2014 01:35
Show Gist options
  • Save jeffhung/befd6063bb62bc4bbf6c to your computer and use it in GitHub Desktop.
Save jeffhung/befd6063bb62bc4bbf6c to your computer and use it in GitHub Desktop.
#pragma pack(push, 1) // exact fit - no padding
union A
{
int a[3];
struct {
int x;
int y;
int z;
} s;
};
#pragma pack(pop) //back to whatever the previous packing mode was
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment