BloggerAds廣告

2019年6月4日 星期二

[C Plue Plus] error C4430: missing type specifier - int assumed. Note: C++ does not support default-int

在Build DirectShow的Sample時, 出現了此錯誤訊息.
網路上找了一下解法
將 operator=(LONG);改成 LONG operator=(LONG);
以下是發生原因
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选项。