I have run across a problem where whenever I (or something else) uses a vector, I get a linker error. even just the code:
std::vector<int> testVector(8);
gives me the error:
error LNK2019: unresolved external symbol "void __cdecl std::_Debug_message(wchar_t const *,wchar_t const *,unsigned int)" (?_Debug_message@std@@YAXPB_W0I@Z) referenced in function "void __cdecl std::_Debug_pointer<char>(char const *,wchar_t const *,unsigned int)" (??$_Debug_pointer@D@std@@YAXPBDPB_WI@Z)
So is there some setting i am supposed to set before using vectors, or am i supposed to use a different data type with Dark GDK? I don't get these errors with the same code in a non-darkgdk project. ive just started using Dark GDK so i am still learning about it. i am using MVC 2008 with Windows 7. any help is appreciated
EDIT: this only happens in the debug configuration. the release exe compiles without any errors