I have searched through these forums and haven't been able to find why I am having trouble including string into my project.
Here is the errors that I'm getting:
Error 2 error LNK2019: unresolved external symbol __malloc_dbg referenced in function "void * __cdecl operator new(unsigned int,struct std::_DebugHeapTag_t const &,char *,int)" (??2@YAPAXIABU_DebugHeapTag_t@std@@PADH@Z) libcpmtd.lib
Error 3 error LNK2019: unresolved external symbol __free_dbg referenced in function "void __cdecl operator delete(void *,struct std::_DebugHeapTag_t const &,char *,int)" (??3@YAXPAXABU_DebugHeapTag_t@std@@PADH@Z) libcpmtd.lib
In my project properties I am ignoring some libraries: libcmtd,msvcrt,atls
Now when I delete libcmtd which is what the linker error is complaining about, I get some other linker errors which is why I ignored it in the first place. So what exactly else do I need to change in my project settings?