标签: c++ boost boost-thread
我在类的方法之一中有以下代码行。
boost::thread(&MessageBus::readBus, this, _bus).detach();
我包括以下内容:
#include <boost/thread.hpp>
但是在编译时出现以下错误:
undefined reference to `boost::thread::detach()'
我在这里想念东西吗?