/ctlutil.h(278) : error C4430: missing type specifier - int assumed.

来源:互联网 发布:精通d3.js 第2版 编辑:程序博客网 时间:2024/05/17 06:45
/ctlutil.h(278) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-intBaseClasses/ctlutil.h(278) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int错误发生在:operator=(LONG); 函数定义中,这是因为在VC6中,如果没有显示的指定返回值类型,编译器将其视为默认整型;
但是VS2005,VS2008,VS2010不支持默认整型. 这个错误,解决方法如下:打开project->BaseClasses properties->configuration->C/C++ ->Command Line,增加/wd4430选项。
0 0
原创粉丝点击