컴파일러 오류 C2488
'identifier': 'naked'는 멤버가 아닌 함수 정의에만 적용할 수 있습니다.
naked 특성이 함수 선언에 적용되었습니다.
다음 샘플에서는 C2488을 생성합니다.
// C2488.cpp
// compile with: /c
// processor: x86
__declspec( naked ) void func(); // C2488 declaration, not definition
__declspec( naked ) void i; // C2488 i is not a function
__declspec( naked ) void func() {} // OK