csa
csa

Reputation: 71

boost::thread & member function

I've facing this problem when trying to use boost::thread:

unresolved external symbols:

public: __thiscall boost::thread::~thread(void)
public: __thiscall boost::thread::thread(void)

Does anyone have any idea?

Upvotes: 0

Views: 648

Answers (1)

Roddy
Roddy

Reputation: 68033

You haven't told your linker to link with the boost threads library. Without info on compiler and platform, nobody can help you further.

Upvotes: 2

Related Questions