linkage errors

Started by
0 comments, last by the_edd 15 years, 2 months ago
HI I am getting these strange linkage errors in my code. unresolved external symbol __declspec(dllimport) public: static bool __cdecl std::char_traits<unsigned short> There are about a 1000 of these in a library file. Any ideas how could I get rid of them?
Advertisement
Quote:Original post by Drats
HI I am getting these strange linkage errors in my code.

unresolved external symbol __declspec(dllimport) public: static bool __cdecl std::char_traits<unsigned short>

There are about a 1000 of these in a library file.

Any ideas how could I get rid of them?


Most likely, you are linking against two libraries/objects that have references to different runtime libs. Recompile *all* your code from scratch and make sure you use the same MTd/MDd/... everywhere.

http://support.microsoft.com/kb/140584

This topic is closed to new replies.

Advertisement