หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
'structname': structure was padded due to alignment specifier
Padding was added at the end of a structure because you specified an alignment specifier, such as __declspec(align).
For example, the following code generates C4324:
// C4324.cpp
// compile with: /W4
struct __declspec(align(32)) A
{
char a;
}; // C4324
int main()
{
}