我有一些在 Linux 下编译良好的代码,但我正在尝试将其移植到 Windows。我使用了来自 Boost Pro 的 Boost 1.50 预编译二进制文件,但是当我编译我的代码时,我得到了这个神秘的错误:
error C2664: 'boost::_bi::bind_t<R,F,L>::bind_t(const boost::_bi::bind_t<R,F,L> &)' :
cannot convert parameter 1 from 'boost::_bi::bind_t<R,F,L>'
to 'const boost::_bi::bind_t<R,F,L> &'
C:\Program Files (x86)\boost\boost_1_50\boost\bind\bind_cc.hpp [line] 50
该错误是最无用的,因为它显示在 Boost 头文件的深处,没有表明我的代码中的问题出在哪里。尽管如此,通过注释掉各种代码块,我已将其缩小为原因:
void test(int a)
throw (int) // removing this line makes it compile
{
return;
}
...
boost::function<void(int)> fn = boost::bind<void>(test, _1);
如果我删除throw
函数定义中的说明符,它会起作用。我扔什么都没关系,无论是一个类还是一个int
. 我做错了什么,还是不能绑定到在 Visual C++ 中引发异常的函数?Boost Bind 文档似乎没有提出任何问题,而且 GCC 也没有任何问题。
[旁注:上面的代码不是我的实际代码,但在编译时会出现同样的问题。请避免关于抛出整数不好之类的评论,因为这只是一个微不足道的例子,以防万一有人希望重现该问题。]