_TCHAR* strGroupName = NULL;
const _TCHAR* strTempName = NULL;
//Assign some value to strTempName
strGroupName = _tcschr(strTempName, 92) //C2440
在 VS2008 中编译此代码时,我在上述行出现错误。在 VC6 中它编译得很好。
错误 C2440:“=”:无法从“const wchar_t *”转换为“_TCHAR *”
似乎是什么问题,我该如何解决?