missing type specifier - int assumed. Note: C++ does not support default-int

less than 1 minute read

http://msdn.microsoft.com/ko-kr/library/ms173696(v=VS.100).aspx

MSDN에 한글로 번역돼있지만 뭔소린지 잘 모르겠다.

 

// C4430.cpp // compile with: /c struct CMyClass { CUndeclared m_myClass; // C4430 int m_myClass; // OK };

typedef struct { POINT(); // C4430 // try the following line instead // int POINT(); unsigned x; unsigned y; } POINT;

 

소스코드를 보면…int를 명시적으로 선언하라는 것 같다.