หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
alignof(void)is not allowed
Remarks
An invalid value was passed to an operator.
See alignof operator for more information.
Example
The following example generates C2714.
// C2714.cpp
int main() {
return alignof(void); // C2714
return alignof(char); // OK
}