码迷,mamicode.com
首页 > 其他好文 > 详细

vc6.0转vs2005出现的问题

时间:2014-11-18 23:00:35      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:style   sp   on   问题   bs   ef   as   line   c++   

 在将vc6.0程序转换到vs2005或者vs2008、vs2010时提示:error C2440: ‘static_cast‘ : cannot convert from ‘UINT (__thiscall CStaticLink::* )(CPoint)‘ to ‘LRESULT (__thiscall CWnd::* )(CPoint)
  解决方法:找到  UNIT CStaticLink::OnNcHitTest(CPoint point) 将UNIT 改为LRESULT 

error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
这是因为在VC6中,若是没有显示的指定返回值类型,编译器将其视为默认整型。然则vs2005不支撑默认整型。
解决办法如下:打开:项目----项目属性----设备属性----C/C++----号令行,在附加选项那边添加/wd4430这个选项。
 
 

vc6.0转vs2005出现的问题

标签:style   sp   on   问题   bs   ef   as   line   c++   

原文地址:http://www.cnblogs.com/bitter-first-sweet-last/p/4106120.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!