unresolved external symbol boost::throw_exception
程序员文章站
2024-01-28 09:13:10
...
使用boost库,VS生成的时候一直报错,
error LNK2019: 无法解析的外部符号 “void __cdecl boost::throw_exception(class std::exception const &)”
搜索网上资料得知,可能是使用的boost库默认定义了BOOST_NO_EXCEPTIONS宏,需要用户自定义throw_exception函数,在报错的那个cpp中添加如下函数
void throw_exception(std::exception const & e) // user defined
{
return;
}
结果还是一直报错,然后添加各种预定宏也解决不了。
后来查看<boost\throw_exception.hpp>发现,应该使用namespace boost
namespace boost
{
#ifdef BOOST_NO_EXCEPTIONS
void throw_exception( std::exception const & e ); // user defined
#else
//省略若干
#endif
} // namespace boost
在报错的那个cpp中添加如下函数后解决
namespace boost
{
void throw_exception(std::exception const & e) // user defined
{
return;
}
}
上一篇: linux时间不准确
推荐阅读
-
unresolved external symbol boost::throw_exception
-
提示出现unresolved external symbol _main的解决方法
-
提示出现unresolved external symbol _main的解决方法
-
error LNK2019: unresolved external symbol __imp___pctype referenced in function类问题的解决方案
-
error LNK2019: unresolved external symbol的三种解决办法
-
LIBCD.lib(crt0.obj) : error LNK2001: unresolved external symbol _main
-
VC6.0 error LNK2001: unresolved external symbol _main解决办法