- 论坛徽章:
- 0
|
本帖最后由 unicornx 于 2010-08-28 09:37 编辑
Windows 下做一个多线程的静态库 "/MT”
#include "stdafx.h"
#include <iostream>
using namespace std;
void c ( int errno )
{
}
int d ( )
{
int ret = 0;
c ( ret ); //此行会报错误
return ret;
}
发现只要加上以下两行就编译不过:
#include <iostream>
using namespace std;
报错:error C2664: 'c' : cannot convert parameter 1 from 'int' to 'int *(__cdecl *)(void)'
Conversion from integral type to pointer type requires reinterpret_cast, C-style cast or function-style cast
请问有谁碰到过这个问题,该如何解决?那两行还不能不要,应为我要使用C++的string。 |
|