Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Embedded C++ 4 - Using STL Link failure

Status
Not open for further replies.

JamesGordon

Programmer
Jan 14, 2002
70
GB
Using MS Embedded C++ 4.
Adding <map> and <string> and then trying to write something like:

typedef std::map<std::string, int> jg

jg var;
var["James"] = 2;

I then get the following link error(s):

e4TestDlg.obj : error LNK2019: unresolved external symbol "public: __thiscall std::_Lockit::~_Lockit(void)" (??1_Lockit@std@@QAE@XZ) referenced in function "public: __thiscall std::_Tree<class std::basic_string<char,struct std::char_traits<char>,cla...

Any ideas what I need to do to fix this?

Regards,

James.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top