升压::公历::日期
我无法让它与 Visual C++ 2005 和 boost 1.43 一起使用
,这个简单的源代码:
#include <boost/date_time.hpp>
int main( int argc, char** argv )
{
boost::gregorian::date d();
}
给出了链接时错误:
error LNK2019: unresolved external symbol "class boost::gregorian::date __cdecl d(void)" (?d@@YA?AVdate@gregorian@boost@@XZ)
我一直在使用其他编译的 boost 库,如文件系统或线程,没有问题...
我使用它进行了编译
bjam -a
I can't get it to work with visual c++ 2005 and boost 1.43
this simple source code :
#include <boost/date_time.hpp>
int main( int argc, char** argv )
{
boost::gregorian::date d();
}
gives a link-time error :
error LNK2019: unresolved external symbol "class boost::gregorian::date __cdecl d(void)" (?d@@YA?AVdate@gregorian@boost@@XZ)
I've been using other compiled boost libraries like filesystem or thread without problems...
I compiled it using
bjam -a
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在声明一个函数原型,而不是创建一个 boost::gregorian::date 变量。去掉括号。
You're declaring a function prototype, not creating a
boost::gregorian::date
variable. Take off the parentheses.