尚未声明boost :: posix_time'

时间:2013-01-31 18:32:11

标签: ubuntu boost

当我尝试使用以下行编译代码时:(我正在使用boost 1.51gcc 4.6.3中有UBuntu 12.04 LTS 64 bits

 #include <boost/date_time/posix_time/posix_time.hpp>

 dotFile << "// " << boost::posix_time::second_clock::local_time() << std::endl;

我收到此错误:

sources/sctg/src/main.cc: In function 'void printDot(sctg::Configuration*, std::string, std::vector<sctg::Task*>*, std::vector<sctg::Event*>*)':
sources/sctg/src/main.cc:1029:31: error: 'boost::posix_time' has not been declared

知道如何解决?

1 个答案:

答案 0 :(得分:1)

以下最小测试用例适用于我:

$ cat posix_time.cpp

#include <boost/date_time/posix_time/posix_time.hpp>
#include <iostream>

int main()
{
    std::cout << boost::posix_time::second_clock::local_time() << std::endl;
    return 0;
}

$ g++ -Wall posix_time.cpp 
$ ./a.out 
2013-Jan-31 21:34:31
$

试试这个,看看它是否适用于您的系统。如果失败,那么我怀疑你的升级安装有问题(可能是空标题)。