#ifdef UNICODE
typedef std::wstring string;
#else
typedef std::string string;
#endif
***
void foo()
{
std::ifstream stream;
string file = _T("some file");
stream.open(file);
}
error: cannot convert parameter 1 from 'string' to 'const wchar_t *'
Как правильно сделать?