หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
align(value) : illegal alignment value
Remarks
You passed a value to the align keyword that is outside the allowable range.
Example
The following example generates C2345:
// C2345.cpp
// compile with: /c
__declspec(align(8)) int a; // OK
__declspec(align(16384)) int b; // C2345