Error 1 error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
以下解决办法转自优快云:
BaseClasses\ctlutil.h(278) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
错误发生在:operator=(LONG); 函数定义中,这是因为在VC6中,如果没有显示的指定返回值类型,编译器将其视为默认整型;但是vs2005不支持默认整型. 这个错误,解决方法如下:
打开project->BaseClasses properties->configuration->C/C++ ->Command Line,增加/wd4430选项。
本文来自优快云博客,http://blog.youkuaiyun.com/CodeJoker/archive/2009/11/05/4771938.aspx
我的环境:VS2010按以上办法解决后正常。
本文介绍了解决Visual Studio 2010中出现的默认整型错误C4430的方法,该错误源于未指定返回类型的函数定义。通过在项目配置中添加/wd4430选项来忽略此警告。
3519

被折叠的 条评论
为什么被折叠?



