Trying to track down a LNK2019 Unresolved External Symbol error on a function that has a number of std::string const &
arguments.
Step one of this answer says to check decorated / undecorated names, and this is what I'm seeing in the linker error text in the argument list:
class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &
Is this also std::string const &
?
Thanks for your help.
I'm running VS 2008.