Using Visual Studio or gcc, if I've got
#pragma pack(push, 16)
typedef std::map<uint32_t, uint32_t> MyIntMap;
#pragma pack(pop)
then later:
#pragma pack(push, 8)
MyIntMap thisInstance;
#pragma pack(pop)
What is the structure alignment of thisInstance? That is, for a typedef'd template class, does pragma pack take effect at the place of the typedef or at the place of a variable definition? If it's the latter, what's a good workaround to get a type with consistent alignment across files?