नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
'filename' : alignment changed after including header, may be due to missing #pragma pack(pop)
Remarks
Packing affects the layout of classes, and commonly, if packing changes across header files, there can be problems.
Use #pragma pack(pop) before exiting the header file to resolve this warning.
Example
The following example generates C4103:
// C4103.h
#pragma pack(push, 4)
// definitions and declarations
// uncomment the following line to resolve
// #pragma pack(pop)
And then,
// C4103.cpp
// compile with: /LD /W1
#include "c4103.h" // C4103