หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
unexpected #elif
Remarks
The #elif directive appears outside an #if, #ifdef, or #ifndef construct. Use #elif only within one of these constructs.
Example
The following example generates C1018:
// C1018.cpp
#elif // C1018
#endif
int main() {}
Possible resolution:
// C1018b.cpp
#if 1
#elif
#endif
int main() {}