Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Why would you want to use #pragma pack(pop, 1)? What would that mean?
#pragma pack(pop, 1)
The normal use case is something like:
#pragma pack(push, 1) // save current pack setting and set to 1 ... #pragma pack(pop) // return to previous pack setting