오늘도 Builder로 써 열심히 Build를 하고 있었다... 나 <--- 난 거의 팀내 잡부로 수 많은 Link Error를 접해보는 사람이다.
아래와 같은 C4430을 마주했다.
1>.\SubtitlePresentation.cpp(109) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
Class에서 Member Function을 선언하고, 실제 구현부에서 return 값을 빼먹었을때, C4430이 여지 없이 일어난다 한번 테스트를 해보길...
MSDN Error 페이지를 살펴 보니 아래와 같은 경우 발생하게 된다.
Error Message
missing type specifier - int assumed. Note: C++ does not support default-int
This error can be generated as a result of compiler conformance work that was done for Visual C++ 2005: all declarations must now explicitly specify the type; int is no longer assumed. See Breaking Changes in the Visual C++ 2005 Compiler for more information.